Fix a typo
This commit is contained in:
@@ -260,7 +260,7 @@ PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod)
|
|||||||
PycRef<ASTNode> src = stack.top();
|
PycRef<ASTNode> src = stack.top();
|
||||||
stack.pop();
|
stack.pop();
|
||||||
/* This is a problem, so fake it with a = a + b syntax */
|
/* This is a problem, so fake it with a = a + b syntax */
|
||||||
stack.push(new ASTBinary(src, right, ASTBinary::BIN_AND));
|
stack.push(new ASTBinary(src, right, ASTBinary::BIN_ADD));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Pyc::INPLACE_SUBTRACT:
|
case Pyc::INPLACE_SUBTRACT:
|
||||||
|
Reference in New Issue
Block a user