A work-in-progress SQL parser written in TypeScript
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

backtick.ts 158B

123456789
  1. import * as AST from "../ast";
  2. export class Backtick {
  3. public value: AST.Identifier;
  4. constructor(value: AST.Identifier) {
  5. this.value = value;
  6. }
  7. }