diff options
Diffstat (limited to 'tests/lexers/applescript/example.txt')
| -rw-r--r-- | tests/lexers/applescript/example.txt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/lexers/applescript/example.txt b/tests/lexers/applescript/example.txt new file mode 100644 index 00000000..f076b5b0 --- /dev/null +++ b/tests/lexers/applescript/example.txt @@ -0,0 +1,38 @@ +---input--- +set jp to "日本語" + +set ru to "Русский" + +jp & " and " & ru -- returns "日本語 and Русский" + +---tokens--- +'set' Keyword +' ' Text +'jp' Name.Variable +' ' Text +'to' Keyword +' ' Text +'"日本語"' Literal.String.Double +'\n\n' Text + +'set' Keyword +' ' Text +'ru' Name.Variable +' ' Text +'to' Keyword +' ' Text +'"Русский"' Literal.String.Double +'\n\n' Text + +'jp' Name.Variable +' ' Text +'&' Operator +' ' Text +'" and "' Literal.String.Double +' ' Text +'&' Operator +' ' Text +'ru' Name.Variable +' ' Text +'-- returns "日本語 and Русский"' Comment +'\n' Text |
