aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexilla/test/examples/cpp
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2020-04-13 07:41:08 +1000
committerNeil <nyamatongwe@gmail.com>2020-04-13 07:41:08 +1000
commit1769cc3907d3f06254053ab76bd9e827417f07cf (patch)
tree58230e7b09fd443c78e05121a50635bbd30970f8 /lexilla/test/examples/cpp
parent86d705bdc57ed92b36824229ff441bab7483f4ba (diff)
downloadscintilla-mirror-1769cc3907d3f06254053ab76bd9e827417f07cf.tar.gz
Replace islower function and add tests for JavaScript regular expressions.
Diffstat (limited to 'lexilla/test/examples/cpp')
-rw-r--r--lexilla/test/examples/cpp/SciTE.properties5
-rw-r--r--lexilla/test/examples/cpp/x.cxx4
-rw-r--r--lexilla/test/examples/cpp/x.cxx.styled6
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}