Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/error.todo-new-target-meta-property.expect.md
2026-08-27 21:09:14 +00:00

32 lines
567 B
Markdown

## Input
```javascript
import {Stringify} from 'shared-runtime';
function foo() {
const nt = new.target;
return <Stringify value={nt} />;
}
```
## Error
```
Found 1 error:
Todo: (BuildHIR::lowerExpression) Handle MetaProperty expressions other than import.meta
error.todo-new-target-meta-property.ts:4:13
2 |
3 | function foo() {
> 4 | const nt = new.target;
| ^^^^^^^^^^ (BuildHIR::lowerExpression) Handle MetaProperty expressions other than import.meta
5 | return <Stringify value={nt} />;
6 | }
7 |
```