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

Add support for struct literal using square brackets #534

Closed
micahknox opened this issue Jan 9, 2018 · 4 comments
Closed

Add support for struct literal using square brackets #534

micahknox opened this issue Jan 9, 2018 · 4 comments
Labels
Milestone

Comments

@micahknox
Copy link

Lucee supports the use of square brackets as opposed to curly brackets when defining a struct literal. This creates an ordered structure and preserves the order of the keys. Currently the CFLint parser sees this as incorrect synatx and flags it as an error. I propose support be added for this syntax. Here's an example of some code that produces this error:
var orderedStruct = [ keyA: 'value', keyB: 'value' ]

@KamasamaK
Copy link
Collaborator

ACF2016 also supports this syntax.

@KamasamaK
Copy link
Collaborator

KamasamaK commented Feb 20, 2019

Also, be sure to consider the empty ordered struct literals:
var orderedStruct = [:] or var orderedStruct = [=]

@KamasamaK
Copy link
Collaborator

Depends on cfparser/cfparser#124

ryaneberly pushed a commit that referenced this issue Sep 17, 2019
@ryaneberly
Copy link
Contributor

fixed with cfparser 2.10.0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants