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 5x 5x 2x 2x 5x 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 runSyntax(node: ExpressionNode | StatementNode, input: SyntaxInput): void { const dyn = node.findDirectExpression(Expressions.Dynamic); if (dyn) { new Dynamic().runSyntax(dyn, input); } } } |