Commit 4e7785aa authored by Anthony Baxter's avatar Anthony Baxter

fix for @decorators under a debug build.

parent 829d6c41
...@@ -4025,6 +4025,7 @@ com_decorator_name(struct compiling *c, node *n) ...@@ -4025,6 +4025,7 @@ com_decorator_name(struct compiling *c, node *n)
varname = CHILD(n, 0); varname = CHILD(n, 0);
REQ(varname, NAME); REQ(varname, NAME);
com_addop_varname(c, VAR_LOAD, STR(varname)); com_addop_varname(c, VAR_LOAD, STR(varname));
com_push(c, 1);
for (i = 1; i < nch; i += 2) { for (i = 1; i < nch; i += 2) {
node *attrname; node *attrname;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment