Skip to content

Instantly share code, notes, and snippets.

@MizukiSonoko
Last active October 2, 2015 09:41
Show Gist options
  • Save MizukiSonoko/d71937be86d5e770c9ed to your computer and use it in GitHub Desktop.
Save MizukiSonoko/d71937be86d5e770c9ed to your computer and use it in GitHub Desktop.
>>> a = [ 1, 2.0, [ 3, 4 + 5]]
Time: 1332[ms]
Statement:
VariableDecl:
Name:a
List:
List:
ListVariableDecl:
ListVariableDecl:
ListVariableDecl:
List:
List:
ListVariableDecl:
ListVariableDecl:
RightValue:
BinaryExpr:
Operator:+
Identifire:
Number:4
Identifire:
Number:5
RightValue:
Identifire:
Number:3
RightValue:
Identifire:
Number:2.0
RightValue:
Identifire:
Number:1
>>> a = [ 1, 2.0, [ 3, 4 + 5]]
define a
define a
Time: 841[ms]
Statement:
VariableDecl:
Name:a
RightValue:
List:
ListVariableDecl:
ListVariableDecl:
ListVariableDecl:
RightValue:
List:
ListVariableDecl:
ListVariableDecl:
RightValue:
BinaryExpr:
Operator:+
Identifire:
Number:4
Identifire:
Number:5
RightValue:
Identifire:
Number:3
RightValue:
Identifire:
Number:2.0
RightValue:
Identifire:
Number:1
@MizukiSonoko
Copy link
Author

少し進化した

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment