You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a language that generates files with whitespaces in the file name. However, when I write an Xpect test for this, the line
XPECT generated file MyFile 1.foo ---
creates an error because only MyFile is parsed as the parameter and 1.foo is left over. As a result, my correctly working code generator produces a test failure.
I believe, the fix would be to replace the following line:
I have a language that generates files with whitespaces in the file name. However, when I write an Xpect test for this, the line
XPECT generated file MyFile 1.foo ---
creates an error because only
MyFile
is parsed as the parameter and1.foo
is left over. As a result, my correctly working code generator produces a test failure.I believe, the fix would be to replace the following line:
Xpect/org.eclipse.xpect.xtext.lib/src/org/eclipse/xpect/xtext/lib/tests/GeneratorTest.java
Line 54 in a273310
with
@ParameterParser(syntax = "('file' arg2=STRING)?")
because then I could use a quoted string to provide my file name with white spaces in.
The text was updated successfully, but these errors were encountered: