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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1344x 1344x 1344x 160x 160x 160x 1x 1x 1x 160x 1343x 1343x 1343x 1344x 1343x 1343x 1344x 69x 69x 69x 69x 1274x 1344x 316x 316x 316x 316x 135x 135x 135x 135x 135x 316x 14x 14x 14x 8x 8x 8x 8x 181x 3x 3x 3x 2x 2x 167x 135x 164x 3x 3x 3x 3x 3x 2x 2x 29x 26x 3x 3x 3x 3x 3x 26x 9x 9x 9x 316x 1266x 1266x 1344x 5x 2x 2x 2x 2x 3x 3x 1264x 1264x 1344x 6x 2x 2x 2x 2x 4x 4x 1262x 1262x 1262x 1x 1x 1x 1x 1343x 1343x 1343x 1343x 1343x 1343x 1343x 1224x 1224x 1155x 1155x 1224x 2x 2x 2x 2x 2x 1224x 1343x 3x 3x 2x 2x 3x 1x 1x 1x 119x 2x 2x 1x 1x 1x 1x 1x 1x 114x 114x 114x 1x | import * as Expressions from "../../2_statements/expressions"; import {ExpressionNode} from "../../nodes"; import {AbstractType} from "../../types/basic/_abstract_type"; import {UnknownType} from "../../types/basic/unknown_type"; import {INode} from "../../nodes/_inode"; import {Dash, InstanceArrow} from "../../1_lexer/tokens"; import {StructureType, ObjectReferenceType, VoidType, DataReference, TableType, XStringType, StringType} from "../../types/basic"; import {ComponentName} from "./component_name"; import {AttributeName} from "./attribute_name"; import {FieldOffset} from "./field_offset"; import {ReferenceType} from "../_reference"; import {TableExpression} from "./table_expression"; import {Dereference} from "../../2_statements/expressions"; import {FieldLength} from "./field_length"; import {Cast} from "./cast"; import {CheckSyntaxKey, SyntaxInput, syntaxIssue} from "../_syntax_input"; export class Target { public runSyntax(node: ExpressionNode, input: SyntaxInput): AbstractType | undefined { const concat = node.concatTokens(); if (concat.includes("-")) { // workaround for names with dashes const found = input.scope.findVariable(concat); if (found) { input.scope.addReference(node.getFirstToken(), found, ReferenceType.DataWriteReference, input.filename); return found.getType(); } } const children = node.getChildren().slice(); const first = children.shift(); if (first === undefined || !(first instanceof ExpressionNode)) { return undefined; } let context = this.findTop(first, input); if (context === undefined) { const message = `"${first.getFirstToken().getStr()}" not found, Target`; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return new VoidType(CheckSyntaxKey); } while (children.length > 0) { const current = children.shift(); if (current === undefined) { break; } if (current.get() instanceof Dash) { if (context instanceof UnknownType) { const message = "Not a structure, type unknown, target"; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return new VoidType(CheckSyntaxKey); } else if (!(context instanceof StructureType) && !(context instanceof TableType && context.isWithHeader() && context.getRowType() instanceof StructureType) && !(context instanceof TableType && context.isWithHeader() && context.getRowType() instanceof VoidType) && !(context instanceof VoidType)) { const message = "Not a structure, target"; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return new VoidType(CheckSyntaxKey); } } else if (current.get() instanceof InstanceArrow) { if (!(context instanceof ObjectReferenceType) && !(context instanceof DataReference) && !(context instanceof VoidType)) { const message = "Not an object reference, target"; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return new VoidType(CheckSyntaxKey); } } else if (current.get() instanceof Dereference) { if (!(context instanceof DataReference) && !(context instanceof VoidType)) { const message = "Not an object reference, target"; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return new VoidType(CheckSyntaxKey); } if (!(context instanceof VoidType)) { context = context.getType(); } } else if (current.get() instanceof Expressions.ComponentName) { context = new ComponentName().runSyntax(context, current, input); } else if (current.get() instanceof Expressions.TableBody) { if (!(context instanceof TableType) && !(context instanceof VoidType) && !(context instanceof UnknownType) && !(context instanceof UnknownType)) { const message = "Not a internal table, \"[]\""; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return new VoidType(CheckSyntaxKey); } if (context instanceof TableType && context.isWithHeader()) { context = new TableType(context.getRowType(), {...context.getOptions(), withHeader: false}); } } else if (current instanceof ExpressionNode && current.get() instanceof Expressions.TableExpression) { if (!(context instanceof TableType) && !(context instanceof VoidType)) { const message = "Table expression, expected table"; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return new VoidType(CheckSyntaxKey); } new TableExpression().runSyntax(current, input); if (!(context instanceof VoidType)) { context = context.getRowType(); } } else if (current.get() instanceof Expressions.AttributeName) { const type = children.length === 0 ? ReferenceType.DataWriteReference : ReferenceType.DataReadReference; context = new AttributeName().runSyntax(context, current, input, type); } } const offset = node.findDirectExpression(Expressions.FieldOffset); if (offset) { if (context instanceof XStringType || context instanceof StringType) { const message = "xstring/string offset/length in writer position not possible"; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return new VoidType(CheckSyntaxKey); } new FieldOffset().runSyntax(offset, input); } const length = node.findDirectExpression(Expressions.FieldLength); if (length) { if (context instanceof XStringType || context instanceof StringType) { const message = "xstring/string offset/length in writer position not possible"; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return new VoidType(CheckSyntaxKey); } new FieldLength().runSyntax(length, input); } return context; } ///////////////////////////////// private findTop(node: INode | undefined, input: SyntaxInput): AbstractType | undefined { if (node === undefined) { return undefined; } const token = node.getFirstToken(); const name = token.getStr(); if (node.get() instanceof Expressions.TargetField || node.get() instanceof Expressions.TargetFieldSymbol) { const found = input.scope.findVariable(name); if (found) { input.scope.addReference(token, found, ReferenceType.DataWriteReference, input.filename); } if (name.includes("~")) { const idef = input.scope.findInterfaceDefinition(name.split("~")[0]); if (idef) { input.scope.addReference(token, idef, ReferenceType.ObjectOrientedReference, input.filename); } } return found?.getType(); } else if (node.get() instanceof Expressions.ClassName) { const found = input.scope.findObjectDefinition(name); if (found) { input.scope.addReference(token, found, ReferenceType.ObjectOrientedReference, input.filename); return new ObjectReferenceType(found); } else if (input.scope.getDDIC().inErrorNamespace(name) === false) { input.scope.addReference(token, undefined, ReferenceType.ObjectOrientedVoidReference, input.filename, {ooName: name, ooType: "CLAS"}); return new VoidType(name); } else { return new UnknownType(name + " unknown, Target"); } } else if (node.get() instanceof Expressions.Cast && node instanceof ExpressionNode) { const ret = new Cast().runSyntax(node, input, undefined); if (ret instanceof UnknownType) { const message = "CAST, uknown type"; input.issues.push(syntaxIssue(input, node.getFirstToken(), message)); return new VoidType(CheckSyntaxKey); } return ret; } return new UnknownType("unknown target type"); } } |