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

vertical range separator always being , instead of ; in the tokens #8

Closed
jlaramie opened this issue Jan 2, 2022 · 1 comment
Closed

Comments

@jlaramie
Copy link
Contributor

jlaramie commented Jan 2, 2022

// {1.1;2.1;3.1}

// ACTUAL
['ARRAY', 'function', 'start'],
['ARRAYROW', 'function', 'start'],
['1.1', 'operand', 'number'],
['ARRAYROW', 'function', 'stop'],
[',', 'argument', ''],
['ARRAYROW', 'function', 'start'],
['2.1', 'operand', 'number'],
['ARRAYROW', 'function', 'stop'],
[',', 'argument', ''],
['ARRAYROW', 'function', 'start'],
['3.1', 'operand', 'number'],
['ARRAYROW', 'function', 'stop'],
['ARRAY', 'function', 'stop']

// EXPECTED
['ARRAY', 'function', 'start'],
['ARRAYROW', 'function', 'start'],
['1.1', 'operand', 'number'],
['ARRAYROW', 'function', 'stop'],
[';', 'argument', ''],
['ARRAYROW', 'function', 'start'],
['2.1', 'operand', 'number'],
['ARRAYROW', 'function', 'stop'],
[';', 'argument', ''],
['ARRAYROW', 'function', 'start'],
['3.1', 'operand', 'number'],
['ARRAYROW', 'function', 'stop'],
['ARRAY', 'function', 'stop']
@psalaets
Copy link
Owner

psalaets commented Jan 5, 2022

Fixed in #7

@psalaets psalaets closed this as completed Jan 5, 2022
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

2 participants