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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 6x 1x 1x 6x 6x 6x 6x 5x 5x 3x 5x 2x 2x 6x 1x 1x 6x 6x 6x 6x 6x 6x 6x 1x | import * as Expressions from "../../2_statements/expressions";
import {StatementNode} from "../../nodes";
import {Dynamic} from "../expressions/dynamic";
import {DatabaseTable} from "../expressions/database_table";
import {StatementSyntax} from "../_statement_syntax";
import {Source} from "../expressions/source";
import {ReferenceType} from "../_reference";
import {SyntaxInput} from "../_syntax_input";
export class ModifyDatabase implements StatementSyntax {
public runSyntax(node: StatementNode, input: SyntaxInput): void {
for (const d of node.findAllExpressions(Expressions.Dynamic)) {
Dynamic.runSyntax(d, input);
}
const dbtab = node.findFirstExpression(Expressions.DatabaseTable);
if (dbtab !== undefined) {
if (node.getChildren().length === 5) {
const found = input.scope.findVariable(dbtab.concatTokens());
if (found) {
input.scope.addReference(dbtab.getFirstToken(), found, ReferenceType.DataWriteReference, input.filename);
} else {
DatabaseTable.runSyntax(dbtab, input);
}
} else {
DatabaseTable.runSyntax(dbtab, input);
}
}
for (const s of node.findAllExpressions(Expressions.Source)) {
Source.runSyntax(s, input);
}
for (const s of node.findAllExpressions(Expressions.SimpleSource3)) {
Source.runSyntax(s, input);
}
}
} |