diff options
Diffstat (limited to 'testdata/integration/user_defined_syntax')
3 files changed, 48 insertions, 0 deletions
diff --git a/testdata/integration/user_defined_syntax/ambiguous_tokens1.fail.osml b/testdata/integration/user_defined_syntax/ambiguous_tokens1.fail.osml new file mode 100644 index 0000000..ffc0d64 --- /dev/null +++ b/testdata/integration/user_defined_syntax/ambiguous_tokens1.fail.osml @@ -0,0 +1,16 @@ +\document +\ontology#test + \struct#test[root=true] + \field + \childRef[a] + \childRef[b] + \struct#a + \syntax + \open{=} + \struct#b + \syntax + \short{=} + +\begin{test} += +\end{test} diff --git a/testdata/integration/user_defined_syntax/ambiguous_tokens2.fail.osml b/testdata/integration/user_defined_syntax/ambiguous_tokens2.fail.osml new file mode 100644 index 0000000..cf01bfc --- /dev/null +++ b/testdata/integration/user_defined_syntax/ambiguous_tokens2.fail.osml @@ -0,0 +1,16 @@ +\document +\ontology#test + \struct#test[root=true] + \field + \childRef[a] + \childRef[b] + \struct#a + \syntax + \open{=} + \struct#b + \syntax + \open{=} + +\begin{test} += +\end{test} diff --git a/testdata/integration/user_defined_syntax/ambiguous_tokens3.fail.osml b/testdata/integration/user_defined_syntax/ambiguous_tokens3.fail.osml new file mode 100644 index 0000000..719ae08 --- /dev/null +++ b/testdata/integration/user_defined_syntax/ambiguous_tokens3.fail.osml @@ -0,0 +1,16 @@ +\document +\ontology#test + \struct#test[root=true] + \field + \childRef[a] + \childRef[b] + \struct#a + \syntax + \short{=} + \struct#b + \syntax + \short{=} + +\begin{test} += +\end{test} |