@@ -13,6 +13,7 @@ import { rust } from '@codemirror/lang-rust';
13
13
import { cpp } from '@codemirror/lang-cpp' ;
14
14
import { lezer } from '@codemirror/lang-lezer' ;
15
15
import { php } from '@codemirror/lang-php' ;
16
+ import { wast } from '@codemirror/lang-wast' ;
16
17
17
18
import { apl } from '@codemirror/legacy-modes/mode/apl' ;
18
19
import { asciiArmor } from '@codemirror/legacy-modes/mode/asciiarmor' ;
@@ -34,6 +35,7 @@ import {
34
35
dart ,
35
36
} from '@codemirror/legacy-modes/mode/clike' ;
36
37
import { clojure } from '@codemirror/legacy-modes/mode/clojure' ;
38
+ import { less } from '@codemirror/legacy-modes/mode/css' ;
37
39
import { cmake } from '@codemirror/legacy-modes/mode/cmake' ;
38
40
import { cobol } from '@codemirror/legacy-modes/mode/cobol' ;
39
41
import { coffeeScript } from '@codemirror/legacy-modes/mode/coffeescript' ;
@@ -116,7 +118,6 @@ import { vbScript } from '@codemirror/legacy-modes/mode/vbscript';
116
118
import { velocity } from '@codemirror/legacy-modes/mode/velocity' ;
117
119
import { verilog } from '@codemirror/legacy-modes/mode/verilog' ;
118
120
import { vhdl } from '@codemirror/legacy-modes/mode/vhdl' ;
119
- import { wast } from '@codemirror/legacy-modes/mode/wast' ;
120
121
import { webIDL } from '@codemirror/legacy-modes/mode/webidl' ;
121
122
import { xQuery } from '@codemirror/legacy-modes/mode/xquery' ;
122
123
import { yacas } from '@codemirror/legacy-modes/mode/yacas' ;
@@ -197,12 +198,12 @@ export const langs = {
197
198
velocity : ( ) => StreamLanguage . define ( velocity ) ,
198
199
verilog : ( ) => StreamLanguage . define ( verilog ) ,
199
200
vhdl : ( ) => StreamLanguage . define ( vhdl ) ,
200
- wast : ( ) => StreamLanguage . define ( wast ) ,
201
201
webIDL : ( ) => StreamLanguage . define ( webIDL ) ,
202
202
xQuery : ( ) => StreamLanguage . define ( xQuery ) ,
203
203
yacas : ( ) => StreamLanguage . define ( yacas ) ,
204
204
z80 : ( ) => StreamLanguage . define ( z80 ) ,
205
205
206
+ wast,
206
207
javascript,
207
208
jsx : ( ) => javascript ( { jsx : true } ) ,
208
209
typescript : ( ) => javascript ( { typescript : true } ) ,
@@ -239,6 +240,7 @@ export const langs = {
239
240
ruby : ( ) => StreamLanguage . define ( ruby ) ,
240
241
pascal : ( ) => StreamLanguage . define ( pascal ) ,
241
242
livescript : ( ) => StreamLanguage . define ( liveScript ) ,
243
+ less : ( ) => StreamLanguage . define ( less ) ,
242
244
scheme : ( ) => StreamLanguage . define ( scheme ) ,
243
245
toml : ( ) => StreamLanguage . define ( toml ) ,
244
246
vbscript : ( ) => StreamLanguage . define ( vbScript ) ,
0 commit comments