blob: 24085c63c5c645b021683561ba6bf2755e01bc1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
"use strict";
import { imported } from "somewhere";
import { getter } from "somewhere-else";
const blackbox = x => [x].pop();
function firstCall() {
const value = 42;
const temp = imported;
const temp2 = getter;
const localWithGetter = {
get value() { return blackbox(Promise.resolve()); }
};
const unmapped = 100;
debugger;
}
|