Change expression kind from Expr to FunctionCallArgumentList

This commit is contained in:
kitasuke
2019-04-23 17:54:26 +09:00
parent 7488798e51
commit abd6dcfece
4 changed files with 7 additions and 7 deletions

View File

@@ -460,7 +460,7 @@ EXPR_NODES = [
Child('LeftParen', kind='LeftParenToken',
classification='StringInterpolationAnchor',
force_classification=True),
Child('Expression', kind='Expr'),
Child('Expressions', kind='FunctionCallArgumentList'),
Child('RightParen', kind='StringInterpolationAnchorToken'),
]),