Lines Matching refs:compiler
120 export lazy var v; // The compiler reports an application compilation error.
121 export lazy default function f(){}; // The compiler reports an application compilation error.
122 export lazy default function(){}; // The compiler reports an application compilation error.
123 export lazy default 42; // The compiler reports an application compilation error.
124 export lazy { x }; // The compiler reports an application compilation error.
125 export lazy { x as v }; // The compiler reports an application compilation error.
126 export lazy { x } from "mod"; // The compiler reports an application compilation error.
127 export lazy { x as v } from "mod"; // The compiler reports an application compilation error.
128 export lazy * from "mod"; // The compiler reports an application compilation error.
130 import lazy v from "mod"; // The compiler reports an application compilation error.
131 import lazy * as ns from "mod"; // The compiler reports an application compilation error.
138 …import lazy type { obj } from "./mod"; // Not supported. The compiler reports an application co…
139 …import type lazy { obj } from "./mod"; // Not supported. The compiler reports an application co…