A work-in-progress SQL parser written in TypeScript
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }