feat: add column to syntaxContextType

This commit is contained in:
hayden 2023-11-20 19:15:57 +08:00 committed by Hayden
parent 7b7cc1b49c
commit 00b66ccf44

View File

@ -37,6 +37,10 @@ export enum SyntaxContextType {
PROCEDURE = 'procedure', PROCEDURE = 'procedure',
/** procedure name that will be created */ /** procedure name that will be created */
PROCEDURE_CREATE = 'procedureCreate', PROCEDURE_CREATE = 'procedureCreate',
/** column name */
COLUMN = 'column',
/** column name that will be created */
COLUMN_CREATE = 'columnCreate',
} }
export interface WordRange { export interface WordRange {