Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 3x 2857x 845x 3x 921x 912x | /**
* Represents an expression {@link types.Expr} which was evaluated by codegen and
* which value is already know at compilation time, hence it can be emitted
* as a literal.
*/
export class Literal {
constructor(public val: unknown) {}
public toString() {
return JSON.stringify(this.val);
}
}
/**
* Represents an expression {@link types.Expr} which was evaluated by codegen and
* which value is not yet known at compilation time, hence its value will
* be evaluated at runtime.
*/
export class Expression {
constructor(public val: string) {}
public toString() {
return this.val;
}
}
export type ExpressionResult = Literal | Expression;
|