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 logic of parsing function with no arguments. #990

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

Commits on Jan 21, 2024

  1. Fix logic of parsing function parameter with no arguments.

    Currently a function parameter with no arguments is not parsed correctly. Given `$.objects.keys().size()`, after encountering keys (a function with no arguments) the position should move from $.objects.keys`(`).size() to $.objects.keys()`.`size(). But in current implementation read position moves from $.objects.keys`(`).size() to $.objects.keys(`)`.size()
    
    This pull request will fix this issue.
    q2w committed Jan 21, 2024
    Configuration menu
    Copy the full SHA
    e1480db View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Add test case for fixing parsing logic for function with no arguments

    Add test case for fixing parsing logic for function with no arguments
    q2w committed Jan 29, 2024
    Configuration menu
    Copy the full SHA
    50d0ff2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    87bfad0 View commit details
    Browse the repository at this point in the history