diff options
Diffstat (limited to 'lexilla/test/examples/cpp')
-rw-r--r-- | lexilla/test/examples/cpp/SciTE.properties | 5 | ||||
-rw-r--r-- | lexilla/test/examples/cpp/x.cxx | 4 | ||||
-rw-r--r-- | lexilla/test/examples/cpp/x.cxx.styled | 6 |
3 files changed, 12 insertions, 3 deletions
diff --git a/lexilla/test/examples/cpp/SciTE.properties b/lexilla/test/examples/cpp/SciTE.properties index ea4dd39b8..ae3a6e95b 100644 --- a/lexilla/test/examples/cpp/SciTE.properties +++ b/lexilla/test/examples/cpp/SciTE.properties @@ -1,4 +1,5 @@ lexer.*.cxx=cpp -keywords.*.cxx=int +keywords.*.cxx=int let keywords2.*.cxx= -lexer.cpp.track.preprocessor=1
\ No newline at end of file +lexer.cpp.track.preprocessor=1 +lexer.cpp.escape.sequence=1 diff --git a/lexilla/test/examples/cpp/x.cxx b/lexilla/test/examples/cpp/x.cxx index 384997072..8e42167b2 100644 --- a/lexilla/test/examples/cpp/x.cxx +++ b/lexilla/test/examples/cpp/x.cxx @@ -13,4 +13,8 @@ int main() { double x[] = {3.14159,6.02e23,1.6e-19,1.0+1}; int y[] = {75,0113,0x4b}; printf("hello world %d %g\n", y[0], x[0]); + + // JavaScript regular expression (14) tests + let a = /a/; + let b = /[a-z]+/gi; } diff --git a/lexilla/test/examples/cpp/x.cxx.styled b/lexilla/test/examples/cpp/x.cxx.styled index b602717a5..c269ed1b4 100644 --- a/lexilla/test/examples/cpp/x.cxx.styled +++ b/lexilla/test/examples/cpp/x.cxx.styled @@ -12,5 +12,9 @@ {5}int{0} {11}main{10}(){0} {10}{{0} {11}double{0} {11}x{10}[]{0} {10}={0} {10}{{4}3.14159{10},{4}6.02e23{10},{4}1.6e-19{10},{4}1.0{10}+{4}1{10}};{0} {5}int{0} {11}y{10}[]{0} {10}={0} {10}{{4}75{10},{4}0113{10},{4}0x4b{10}};{0} - {11}printf{10}({6}"hello world %d %g\n"{10},{0} {11}y{10}[{4}0{10}],{0} {11}x{10}[{4}0{10}]);{0} + {11}printf{10}({6}"hello world %d %g{27}\n{6}"{10},{0} {11}y{10}[{4}0{10}],{0} {11}x{10}[{4}0{10}]);{0} + + {2}// JavaScript regular expression (14) tests +{0} {5}let{0} {11}a{0} {10}={0} {14}/a/{10};{0} + {5}let{0} {11}b{0} {10}={0} {14}/[a-z]+/gi{10};{0} {10}}{0} |