Merge branch 'master' into remove-unused-_loadString-parameter

This commit is contained in:
Kyle Sletten 2018-02-07 09:24:05 -07:00 committed by GitHub
commit 6e5155c943
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -179,3 +179,4 @@ YYYY/MM/DD, github id, Full name, email
2017/12/01, SebastianLng, Sebastian Lang, sebastian.lang@outlook.com
2017/12/03, oranoran, Oran Epelbaum, oran / epelbaum me
2017/12/20, kbsletten, Kyle Sletten, kbsletten@gmail.com
2017/12/27, jkmar, Jakub Marciniszyn, marciniszyn.jk@gmail.com

View File

@ -40,7 +40,7 @@ class ParseTreeVisitor(object):
n = node.getChildCount()
for i in range(n):
if not self.shouldVisitNextChild(node, result):
return
return result
c = node.getChild(i)
childResult = c.accept(self)

View File

@ -38,7 +38,7 @@ class ParseTreeVisitor(object):
n = node.getChildCount()
for i in range(n):
if not self.shouldVisitNextChild(node, result):
return
return result
c = node.getChild(i)
childResult = c.accept(self)