File tree Expand file tree Collapse file tree 4 files changed +27
-0
lines changed Expand file tree Collapse file tree 4 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -173,6 +173,7 @@ for_side_effect_test.cmj : mt.cmj
173
173
format_regression.cmj :
174
174
format_test.cmj : mt.cmj ../stdlib/format.cmj
175
175
fs_test.cmj : ../others/node.cmj mt.cmj ../runtime/js.cmj
176
+ gbk.cmj : ../runtime/js.cmj
176
177
genlex_test.cmj : ../stdlib/stream.cmj mt.cmj ../stdlib/list.cmj \
177
178
../stdlib/genlex.cmj
178
179
global_exception_regression_test.cmj : mt.cmj
Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ OTHERS := literals a test_ari test_export2 test_internalOO test_obj_simple_ffi t
88
88
include_side_effect\
89
89
exception_alias\
90
90
prepend_data_ffi\
91
+ gbk
91
92
92
93
93
94
SOURCE_LIST := $(OTHERS )
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+
4
+ console . log ( "\xe4\xbd\xa0\xe5\xa5\xbd" ) ;
5
+
6
+ console . log ( "\xe4\xbd\xa0\xe5\xa5\xbd" ) ;
7
+
8
+ console . log ( ( "你好" ) ) ;
9
+
10
+ console . log ( ( "你好你好" ) ) ;
11
+
12
+ console . log ( ( "\u4f60\u597d" ) ) ;
13
+
14
+ /* Not a pure module */
Original file line number Diff line number Diff line change
1
+
2
+
3
+ Js. log " 你好" ;
4
+
5
+ Js. log {| 你好| };
6
+
7
+ Js. log [% raw {| " 你好" | }];
8
+
9
+ Js. log ([% raw ({| " 你好你好" | } )] : string );
10
+
11
+ Js. log [% raw {| " \u 4f60\u 597d" | }];
You can’t perform that action at this time.
0 commit comments