Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parse error if a randomElement has a full stop in it #20

Open
robertlagrant opened this issue Feb 28, 2018 · 0 comments
Open

Parse error if a randomElement has a full stop in it #20

robertlagrant opened this issue Feb 28, 2018 · 0 comments

Comments

@robertlagrant
Copy link

Copied from here to the upstream.

String

Works:

    (thing:Thing { number: {randomElement:['Hello']} } *10)

Doesn't work:

    (thing:Thing { number: {randomElement:['Hello.']} } *10)

    // The part "(thing:Thing { number: {randomElement:['Hello.']} } *10)" could not be parsed, check it for type errors.

Number

Works:

    (thing:Thing { number: {randomElement:[1]} } *10)

Doesn't work:

    (thing:Thing { number: {randomElement:[1.1]} } *10)

    // The part "(thing:Thing { number: {randomElement:[1.1]} } *10)" could not be parsed, check it for type errors.

Number in string

Works:

    (thing:Thing { number: {randomElement:['1']} } *10)

Doesn't work:

    (thing:Thing { number: {randomElement:['1.1']} } *10)

    // The part "(thing:Thing { number: {randomElement:['1.1']} } *10)" could not be parsed, check it for type errors.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant