|
@@ -71,7 +71,12 @@ MISC_INTRINSICS = {
|
|
|
|
|
|
# State creation
|
|
|
'create_node' : tree_ir.CreateNodeInstruction,
|
|
|
- 'create_edge' : tree_ir.CreateEdgeInstruction,
|
|
|
+ 'create_edge' :
|
|
|
+ # Lambda is totally necessary here, pylint.
|
|
|
+ # You totally dropped the ball on this one.
|
|
|
+ # pylint: disable=I0011,W0108
|
|
|
+ lambda a, b:
|
|
|
+ tree_ir.CreateEdgeInstruction(a, b),
|
|
|
'create_value' :
|
|
|
lambda a:
|
|
|
tree_ir.CreateNodeWithValueInstruction(
|