A work-in-progress SQL parser written in TypeScript
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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