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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 7x 7x 7x 1x 1x 1x 1x 6x 7x 1x 1x 1x 1x 5x 5x 7x 5x 5x 5x 7x 1x | import * as Expressions from "../../2_statements/expressions"; import {StatementNode} from "../../nodes"; import {TypedIdentifier} from "../../types/_typed_identifier"; import {UnknownType} from "../../types/basic"; import {BasicTypes} from "../basic_types"; import {StatementSyntax} from "../_statement_syntax"; import {SyntaxInput, syntaxIssue} from "../_syntax_input"; export class Parameter implements StatementSyntax { public runSyntax(node: StatementNode, input: SyntaxInput): void { const nameToken = node.findFirstExpression(Expressions.FieldSub)?.getFirstToken(); if (nameToken && nameToken.getStr().length > 8) { const message = "Parameter name too long, " + nameToken.getStr(); input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return; } if (node.findDirectTokenByText("RADIOBUTTON") && node.findDirectTokenByText("LENGTH")) { const message = "RADIOBUTTON and LENGTH not possible together"; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return; } const bfound = new BasicTypes(input).parseType(node); if (nameToken && bfound) { input.scope.addIdentifier(new TypedIdentifier(nameToken, input.filename, bfound)); return; } if (nameToken) { input.scope.addIdentifier(new TypedIdentifier(nameToken, input.filename, new UnknownType("Parameter, fallback"))); } } } |