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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 6x 6x 4x 4x 6x 2x 2x 6x 6x 6x 2x 2x 1x 1x 1x 1x 2x 6x 6x 6x 3x 3x 1x 3x 2x 2x 3x 6x 6x 6x 1x 1x 1x 1x 1x 6x 6x 6x 1x 1x 1x 1x 1x 6x 6x 1x | import * as Expressions from "../../2_statements/expressions"; import {StatementNode} from "../../nodes"; import {InlineData} from "../expressions/inline_data"; import {CharacterType, IntegerType} from "../../types/basic"; import {Target} from "../expressions/target"; import {Source} from "../expressions/source"; import {FieldChain} from "../expressions/field_chain"; import {ReferenceType} from "../_reference"; import {StatementSyntax} from "../_statement_syntax"; import {SyntaxInput} from "../_syntax_input"; export class Describe implements StatementSyntax { public runSyntax(node: StatementNode, input: SyntaxInput): void { for (const s of node.findDirectExpressions(Expressions.Source)) { new Source().runSyntax(s, input); } for (const s of node.findDirectExpressions(Expressions.FieldChain)) { new FieldChain().runSyntax(s, input, ReferenceType.DataReadReference); } const linesTarget = node.findExpressionAfterToken("LINES"); if (linesTarget?.get() instanceof Expressions.Target) { const inline = linesTarget?.findDirectExpression(Expressions.InlineData); if (inline) { new InlineData().runSyntax(inline, input, IntegerType.get()); } else { new Target().runSyntax(linesTarget, input); } } const typeTarget = node.findExpressionAfterToken("TYPE"); if (typeTarget?.get() instanceof Expressions.Target) { const inline = typeTarget?.findDirectExpression(Expressions.InlineData); if (inline) { new InlineData().runSyntax(inline, input, new CharacterType(1)); } else { new Target().runSyntax(typeTarget, input); } } const lengthTarget = node.findExpressionAfterToken("LENGTH"); if (lengthTarget?.get() instanceof Expressions.Target) { const inline = lengthTarget?.findDirectExpression(Expressions.InlineData); if (inline) { new InlineData().runSyntax(inline, input, IntegerType.get()); } else { new Target().runSyntax(lengthTarget, input); } } const componentsTarget = node.findExpressionAfterToken("COMPONENTS"); if (componentsTarget?.get() instanceof Expressions.Target) { const inline = componentsTarget?.findDirectExpression(Expressions.InlineData); if (inline) { new InlineData().runSyntax(inline, input, IntegerType.get()); } else { new Target().runSyntax(componentsTarget, input); } } } } |