-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonarch_language.ts
113 lines (95 loc) · 2.76 KB
/
monarch_language.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import * as monaco from "monaco-editor"
export const monarch_formatting: monaco.languages.IMonarchLanguage = {
defaultToken: 'invalid',
tokenPostfix: '.pseudocode',
keywords: [
"array", "for", "to", "next", "while", "endwhile", "do",
"until", "if", "elseif", "else", "endif", "then",
"switch", "case", "default", "endswitch",
"function", "endfunction", "procedure", "endprocedure", "return",
"class", "private", "public", "endclass", "new", "inherits"
],
text_operations: [
"NOT"
],
builtin_functions: [
"print", "input", "int", "str", "openRead", "openWrite",
"substring", "length", "readLine", "writeLine", "endOfFile", "close"
],
operators: [
"==", "!=", ">=", "<=", "+", "-", "*", "/", "^", ">", "<", "!", "="
],
// we include these common regular expressions
symbols: /[=><!~?:&|+\-*\/\^%]+/,
escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
digits: /\d+(_+\d+)*/,
// The main tokenizer for our languages
tokenizer: {
root: [
[/[{}]/, 'delimiter.bracket'],
{ include: 'common' }
],
common: [
{ include: '@whitespace' },
[/@symbols/, {
cases: {
'@operators': 'operators',
'@default': ''
}
}],
// identifiers and keywords
[/[a-zA-Z_$][\w$]*/, {
cases: {
'@text_operations': 'operators',
'@keywords': 'keyword',
'@builtin_functions': 'keyword',
'@default': 'identifier'
}
}],
// [/[A-Z][\w\$]*/, 'identifier'],
// delimiters and operators
[/[()\[\]]/, '@brackets'],
[/[<>](?!@symbols)/, '@brackets'],
// numbers
[/(@digits)[eE]([\-+]?(@digits))?/, 'number.float'],
[/(@digits)\.(@digits)([eE][\-+]?(@digits))?/, 'number.float'],
// [/0[xX](@hexdigits)/, 'number.hex'],
// [/0[oO]?(@octaldigits)/, 'number.octal'],
// [/0[bB](@binarydigits)/, 'number.binary'],
[/(@digits)/, 'number'],
// delimiter: after number because of .\d floats
[/[,.]/, 'delimiter'],
// strings
[/"([^"\\]|\\.)*$/, 'string.invalid'], // non-teminated string
[/'([^'\\]|\\.)*$/, 'string.invalid'], // non-teminated string
[/"/, 'string', '@string_double'],
[/'/, 'string', '@string_single'],
],
whitespace: [
[/[ \t\r\n]+/, ''],
[/\/\/.*$/, 'comment'],
],
string_double: [
[/[^\\"]+/, 'string'],
[/@escapes/, 'string.escape'],
[/\\./, 'string.escape.invalid'],
[/"/, 'string', '@pop']
],
string_single: [
[/[^\\']+/, 'string'],
[/@escapes/, 'string.escape'],
[/\\./, 'string.escape.invalid'],
[/'/, 'string', '@pop']
],
bracketCounting: [
[/\{/, 'delimiter.bracket', '@bracketCounting'],
[/\}/, 'delimiter.bracket', '@pop'],
{ include: 'common' }
],
},
}
export const language_configuration: monaco.languages.LanguageConfiguration = {
comments: {
lineComment: "//",
},
}