Ignore:
Timestamp:
Dec 1, 2015, 6:39:58 AM (10 years ago)
Author:
Carlos Garcia Campos
Message:

Unreviewed, rolling out r192876.

It broke a lot of JSC and layout tests for GTK and EFL

Reverted changeset:

"[ES6] "super" and "this" should be lexically bound inside an
arrow function and should live in a JSLexicalEnvironment"
https://bugs.webkit.org/show_bug.cgi?id=149338
http://trac.webkit.org/changeset/192876

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp

    r192876 r192882  
    758758            break;
    759759        }
     760        case op_load_arrowfunction_this: {
     761            int r0 = (++it)->u.operand;
     762            printLocationOpAndRegisterOperand(out, exec, location, it, "load_arrowfunction_this", r0);
     763            break;
     764        }
    760765        case op_create_direct_arguments: {
    761766            int r0 = (++it)->u.operand;
     
    13031308            int r1 = (++it)->u.operand;
    13041309            int f0 = (++it)->u.operand;
     1310            int r2 = (++it)->u.operand;
    13051311            printLocationAndOp(out, exec, location, it, "op_new_arrow_func_exp");
    1306             out.printf("%s, %s, f%d", registerName(r0).data(), registerName(r1).data(), f0);
     1312            out.printf("%s, %s, f%d, %s", registerName(r0).data(), registerName(r1).data(), f0, registerName(r2).data());
    13071313            break;
    13081314        }
Note: See TracChangeset for help on using the changeset viewer.