diff options
author | Jad Altahan <xviyy@aol.com> | 2019-05-22 16:11:45 +1000 |
---|---|---|
committer | Jad Altahan <xviyy@aol.com> | 2019-05-22 16:11:45 +1000 |
commit | 9d9bbec07291d768be64a3ea045a4aa656d150ae (patch) | |
tree | 65255070de3f5df6f50cb9e44452b3c8e07e3427 /test | |
parent | 3018a2890c076b33159adc6655586c39e2693b22 (diff) | |
download | scintilla-mirror-9d9bbec07291d768be64a3ea045a4aa656d150ae.tar.gz |
Support for VB2017 bin literals & digit separators
Diffstat (limited to 'test')
-rw-r--r-- | test/examples/x.vb | 4 | ||||
-rw-r--r-- | test/examples/x.vb.styled | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/test/examples/x.vb b/test/examples/x.vb index a4503704b..a672831a0 100644 --- a/test/examples/x.vb +++ b/test/examples/x.vb @@ -7,3 +7,7 @@ Dim d As String = "\\\\server\\share\\file.txt" ""C "c"C "cc"C ' Date d = #5/31/1993# or # 01/01/0001 12:00:00AM # +' Number +123_456___789 +123_ +&b10101_01010 diff --git a/test/examples/x.vb.styled b/test/examples/x.vb.styled index e0c86f918..1d19c8ae8 100644 --- a/test/examples/x.vb.styled +++ b/test/examples/x.vb.styled @@ -7,3 +7,7 @@ {4}""C{0} {4}"c"C{0} {4}"cc"C{0} {1}' Date {7}d{0} {6}={0} {8}#5/31/1993#{0} {3}or{0} {8}# 01/01/0001 12:00:00AM #{0} +{1}' Number +{2}123_456___789{0} +{2}123_{0} +{2}&b10101_01010{0} |