- Created a new VSCode Extension subproject - Created a new Bolt CLI subproject - Created a new Bolt Language Server subproject - Created a new Bolt Compiler subproject - Moved most existing code to the new Compiler subproject - Added a small language server - Laid the foundations for a Hindley-Milner type checker - Fixed some bugs and type errors in the compiler - Removed the unused testing infrastructure - Added an example parser test that should be run with Ava
8 lines
204 B
TypeScript
8 lines
204 B
TypeScript
|
|
export const BOLT_SUPPORTED_LANGUAGES = ['Bolt', 'JS'];
|
|
|
|
export const BOLT_DIAG_NUM_EXTRA_LINES = 1;
|
|
|
|
export const BOLT_MAX_FIELDS_TO_PRINT = 3;
|
|
|
|
export const LOG_DATETIME_FORMAT = 'YYYY-MM-DD HH:mm:ss'
|