Unhandled node type Super
node parser.js ../../Protobuf/ast.proto code.js output.ast.proto
content of code.js is // Copyright 2020 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file.
// Flags: --allow-natives-syntax --no-use-ic --super-ic
class A { bar() { } } class B extends A { foo() { return super.bar(); } } %PrepareFunctionForOptimization(B.prototype.foo); new B().foo(); %OptimizeFunctionOnNextCall(B.prototype.foo); new B().foo();
Thanks, yes, these are not yet supported by our compiler, but we're happy to take PRs! See https://github.com/googleprojectzero/fuzzilli/issues/399#issuecomment-1564012050 for some general guidance on how to extend the compiler, and don't hesitate to ask for more specific guidance!