Skip to content

Arithmetic Expressions Support #34

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

Open
wants to merge 57 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
8dffdb0
support for arithmetic expressions
sidhant92 Mar 16, 2024
797980a
support arithmetic in logical and substitute node
sidhant92 Mar 16, 2024
2ed9dd1
cached bool parser
sidhant92 Mar 16, 2024
a2ad8c3
remove object mapper
sidhant92 Mar 17, 2024
467ac22
major version change
sidhant92 Mar 17, 2024
717d045
Merge pull request #28 from sidhant92/arithmetic
sidhant92 Mar 17, 2024
62307b1
Merge pull request #29 from sidhant92/cached_parser
sidhant92 Mar 17, 2024
5b9ee91
Merge pull request #30 from sidhant92/remove_jackson
sidhant92 Mar 17, 2024
16fcae8
unary node without space
sidhant92 Mar 18, 2024
d4a9597
Merge pull request #31 from sidhant92/arithmetic
sidhant92 Mar 18, 2024
e65f315
handle binary subtraction without spaces
sidhant92 Mar 18, 2024
e235142
Merge pull request #32 from sidhant92/arithmetic
sidhant92 Mar 18, 2024
cf20369
update readme
sidhant92 Mar 18, 2024
8ebbe99
Merge pull request #33 from sidhant92/arithmetic
sidhant92 Mar 18, 2024
16829d2
add support for arithmetic functions
sidhant92 May 22, 2024
6008d7c
Merge pull request #35 from sidhant92/array_math_functions
sidhant92 May 22, 2024
db3a80a
merge conflict
sidhant92 May 22, 2024
17209ac
replace string node with unary node
sidhant92 May 27, 2024
9f65eec
fix test case
sidhant92 May 27, 2024
9f8b543
replace pair for evaluated node
sidhant92 May 28, 2024
a447716
replace arithmetic leaf node with unary node
sidhant92 May 28, 2024
8ee0809
remove arithmetic unary node
sidhant92 May 29, 2024
53d1955
code cleanup
sidhant92 May 30, 2024
51e3fd1
refactor
sidhant92 May 30, 2024
a4367e8
support for nested functions
sidhant92 May 30, 2024
39bf89b
change syntax for strings and variables
sidhant92 Jun 9, 2024
6f1a8e4
update readme
sidhant92 Jun 9, 2024
4dce460
Merge pull request #36 from sidhant92/array_math_functions
sidhant92 Jun 9, 2024
19a3756
handle decimal with 0 fractional
sidhant92 Jun 10, 2024
1890a67
Merge pull request #37 from sidhant92/array_math_functions
sidhant92 Jun 10, 2024
2824651
remove logging and add info to errors
sidhant92 Jun 10, 2024
11ae8af
Merge pull request #38 from sidhant92/array_math_functions
sidhant92 Jun 11, 2024
9fe8614
fix error message
sidhant92 Jun 11, 2024
4cae722
Merge pull request #39 from sidhant92/array_math_functions
sidhant92 Jun 11, 2024
bd14aff
bug fix
sidhant92 Jul 1, 2024
4491a78
Merge pull request #40 from sidhant92/array_math_functions
sidhant92 Jul 1, 2024
31d79ad
null check support
sidhant92 Aug 16, 2024
c9045a6
Merge pull request #41 from sidhant92/array_math_functions
sidhant92 Aug 16, 2024
0bfe9d5
fix cache key
sidhant92 Aug 16, 2024
17dfb51
Merge pull request #42 from sidhant92/array_math_functions
sidhant92 Aug 16, 2024
5cf9ac5
fix negative comparison
sidhant92 Aug 24, 2024
86fb416
Merge pull request #43 from sidhant92/array_math_functions
sidhant92 Aug 24, 2024
ea04bd8
handle type conversion
sidhant92 Aug 25, 2024
1d093c9
add validation
sidhant92 Aug 25, 2024
4cc2de6
add test case
sidhant92 Aug 25, 2024
135bf05
Merge pull request #44 from sidhant92/type_conversion
sidhant92 Aug 26, 2024
a6a7992
code cleanup
sidhant92 Aug 27, 2024
0aea20b
Merge pull request #45 from sidhant92/type_conversion
sidhant92 Aug 27, 2024
e9363b3
change from double to bigdecimal
sidhant92 Sep 1, 2024
a2fe377
add readme
sidhant92 Sep 1, 2024
1d62964
Merge pull request #46 from sidhant92/bigdecimal
sidhant92 Sep 1, 2024
a5f4269
make left side of comparison generic
sidhant92 Feb 23, 2025
50899ff
Merge pull request #47 from sidhant92/enhance_comparison
sidhant92 Feb 23, 2025
a702f71
simplify condition
sidhant92 Feb 23, 2025
3cbb593
Merge pull request #48 from sidhant92/enhance_comparison
sidhant92 Feb 23, 2025
489f740
change readme
sidhant92 May 1, 2025
c203d36
Merge pull request #49 from sidhant92/documentation
sidhant92 May 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ out/
`

gradle.properties

*.DS_Store
**/.DS_Store
Loading