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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 66x 66x 66x 66x 66x 66x 66x 1x | import {ExpressionNode} from "../../nodes"; import * as Expressions from "../../2_statements/expressions"; import {TypedIdentifier, IdentifierMeta} from "../../types/_typed_identifier"; import {UnknownType} from "../../types/basic"; import {AbstractType} from "../../types/basic/_abstract_type"; import {ReferenceType} from "../_reference"; import {SyntaxInput} from "../_syntax_input"; export class InlineFS { public runSyntax(node: ExpressionNode, input: SyntaxInput, type: AbstractType | undefined): void { const token = node.findFirstExpression(Expressions.TargetFieldSymbol)?.getFirstToken(); if (token && type) { const identifier = new TypedIdentifier(token, input.filename, type, [IdentifierMeta.InlineDefinition]); input.scope.addIdentifier(identifier); input.scope.addReference(token, identifier, ReferenceType.DataWriteReference, input.filename); } else if (token) { const message = "InlineFS, could not determine type for \"" + token.getStr() + "\""; const identifier = new TypedIdentifier(token, input.filename, new UnknownType(message), [IdentifierMeta.InlineDefinition]); input.scope.addIdentifier(identifier); input.scope.addReference(token, identifier, ReferenceType.DataWriteReference, input.filename); } } } |