mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibJS: Implement 'new.target'
This adds a new MetaProperty AST node which will be used for 'new.target' and 'import.meta' meta properties. The parser now distinguishes between "in function context" and "in arrow function context" (which is required for this). When encountering TokenType::New we will attempt to parse it as meta property and resort to regular new expression parsing if that fails, much like the parsing of labelled statements.
This commit is contained in:
committed by
Andreas Kling
parent
e07a39c816
commit
39a1c9d827
26
Libraries/LibJS/Tests/functions/function-new-target.js
Normal file
26
Libraries/LibJS/Tests/functions/function-new-target.js
Normal file
@@ -0,0 +1,26 @@
|
||||
test("basic functionality", () => {
|
||||
function foo() {
|
||||
return new.target;
|
||||
}
|
||||
expect(foo()).toBeUndefined();
|
||||
expect(new foo()).toEqual(foo);
|
||||
|
||||
function bar() {
|
||||
const baz = () => new.target;
|
||||
return baz();
|
||||
}
|
||||
expect(bar()).toBeUndefined();
|
||||
expect(new bar()).toEqual(bar);
|
||||
|
||||
class baz {
|
||||
constructor() {
|
||||
this.newTarget = new.target;
|
||||
}
|
||||
}
|
||||
expect(new baz().newTarget).toEqual(baz);
|
||||
});
|
||||
|
||||
// FIXME: This does not work as expected as toEval() places the code inside a function :|
|
||||
test.skip("syntax error outside of function", () => {
|
||||
expect("new.target").not.toEval();
|
||||
});
|
||||
Reference in New Issue
Block a user