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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 104x 26x 26x 102x 102x 102x 1x | import {ExpressionNode} from "../../nodes"; import {StringType} from "../../types/basic"; import {AbstractType} from "../../types/basic/_abstract_type"; import * as Expressions from "../../2_statements/expressions"; import {CurrentScope} from "../_current_scope"; import {Source} from "./source"; export class StringTemplate { public runSyntax(node: ExpressionNode, scope: CurrentScope, filename: string): AbstractType { for (const s of node.findAllExpressions(Expressions.Source)) { new Source().runSyntax(s, scope, filename, new StringType({qualifiedName: "STRING"})); } return new StringType(); } } |