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 | 1x 1x 1x 1x 1x 1x 1x 1x 7x 7x 2x 2x 7x 1x 1x | import * as Expressions from "../../2_statements/expressions";
import {ExpressionNode, StatementNode} from "../../nodes";
import {SyntaxInput} from "../_syntax_input";
import {Dynamic} from "./dynamic";
export class SQLOrderBy {
public static runSyntax(node: ExpressionNode | StatementNode, input: SyntaxInput): void {
const dyn = node.findDirectExpression(Expressions.Dynamic);
if (dyn) {
Dynamic.runSyntax(dyn, input);
}
}
} |