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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 6x 6x 6x 6x 6x 6x 6x 6x 1x 1x 1x 6x 5x 5x 5x 6x 6x 6x 3x 6x 2x 2x 6x 1x | import * as Expressions from "../../2_statements/expressions"; import {StatementNode} from "../../nodes"; import {ObjectReferenceType, VoidType} from "../../types/basic"; import {InlineData} from "../expressions/inline_data"; import {AbstractType} from "../../types/basic/_abstract_type"; import {StatementSyntax} from "../_statement_syntax"; import {Target} from "../expressions/target"; import {SyntaxInput, syntaxIssue} from "../_syntax_input"; export class WhenType implements StatementSyntax { public runSyntax(node: StatementNode, input: SyntaxInput): void { const nameToken = node.findFirstExpression(Expressions.ClassName)?.getFirstToken(); if (nameToken === undefined) { return undefined; } let type: AbstractType | undefined = undefined; const className = nameToken.getStr(); const found = input.scope.findObjectDefinition(className); if (found === undefined && input.scope.getDDIC().inErrorNamespace(className) === false) { type = new VoidType(className); } else if (found === undefined) { const message = "Class " + className + " not found"; input.issues.push(syntaxIssue(input, nameToken, message)); return; } else { type = new ObjectReferenceType(found); } const target = node?.findDirectExpression(Expressions.Target); const inline = target?.findDirectExpression(Expressions.InlineData); if (inline) { new InlineData().runSyntax(inline, input, type); } else if (target) { new Target().runSyntax(target, input); } } } |