From 00b66ccf4476a7ead6558677e858449c3c4693ec Mon Sep 17 00:00:00 2001 From: hayden Date: Mon, 20 Nov 2023 19:15:57 +0800 Subject: [PATCH] feat: add column to syntaxContextType --- src/parser/common/basic-parser-types.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/parser/common/basic-parser-types.ts b/src/parser/common/basic-parser-types.ts index a9ae5e0..8a9c0b6 100644 --- a/src/parser/common/basic-parser-types.ts +++ b/src/parser/common/basic-parser-types.ts @@ -37,6 +37,10 @@ export enum SyntaxContextType { PROCEDURE = 'procedure', /** procedure name that will be created */ PROCEDURE_CREATE = 'procedureCreate', + /** column name */ + COLUMN = 'column', + /** column name that will be created */ + COLUMN_CREATE = 'columnCreate', } export interface WordRange {