jellyfin-web/dashboard-ui/bower_components/prism/tests/languages/bison/string_feature.test
2016-02-03 18:00:01 -05:00

21 lines
466 B
Plaintext

%%
foo: 'foo' "foo";
bar: '\'' "\"";
%%
----------------------------------------------------
[
["bison", [
["punctuation", "%%"],
["property", "foo"], ["punctuation", ":"],
["string", "'foo'"], ["string", "\"foo\""], ["punctuation", ";"],
["property", "bar"], ["punctuation", ":"],
["string", "'\\''"], ["string", "\"\\\"\""], ["punctuation", ";"],
["punctuation", "%%"]
]]
]
----------------------------------------------------
Checks for strings.