Routine recompile.

This commit is contained in:
Neil Fraser
2016-06-27 17:40:30 -07:00
parent e7ebe4ae9c
commit 62a644686c
8 changed files with 46 additions and 42 deletions

View File

@@ -96,7 +96,7 @@ Blockly.Python.ORDER_OVERRIDES = [
[Blockly.Python.ORDER_MEMBER, Blockly.Python.ORDER_MEMBER],
// (foo.bar)() -> foo.bar()
// (foo[0])() -> foo[0]()
[Blockly.Python.ORDER_MEMBER, Blockly.Python.ORDER_FUNCTION_CALL]
[Blockly.Python.ORDER_MEMBER, Blockly.Python.ORDER_FUNCTION_CALL],
// not (not foo) -> not not foo
[Blockly.Python.ORDER_LOGICAL_NOT, Blockly.Python.ORDER_LOGICAL_NOT],