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.

alias.ts 284B

1234567891011
  1. import * as AST from "../ast";
  2. export class Alias {
  3. public object: AST.Expr | AST.Statement;
  4. public name: AST.Identifier | AST.Backtick;
  5. constructor(object: AST.Expr | AST.Statement, name: AST.Identifier | AST.Backtick) {
  6. this.object = object;
  7. this.name = name;
  8. }
  9. }