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

Fix parsing logic of function parameters with closing parentheses #989

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Jan 21, 2024

  1. Fix parsing logic of function parameters with closing parentheses

    Currently a function with parameter which have parentheses is wrongly parsed. As soon as a closing parentheses is encountered, the parsing logic assumes end state for the function parameter. For example, given 
    `concat(sum(), 10)` then `sum(` is treated as first parameter. This is wrong parsing logic.
    
    A parameter should be treated completely parsed only when a `,` or, the last `)` is encountered ( that is groupParen == 0)
    q2w authored Jan 21, 2024
    Configuration menu
    Copy the full SHA
    46632f3 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Add test for fixing parsing login when path has a function as argumen…

    …t to another function
    
    Add test for fixing parsing login when path has a function as argument to another function
    q2w authored Jan 29, 2024
    Configuration menu
    Copy the full SHA
    8df4507 View commit details
    Browse the repository at this point in the history