Skip to content

v0.7.0

Compare
Choose a tag to compare
@github-actions github-actions released this 24 Aug 17:25
· 13 commits to main since this release
58d2896
Parallel processing (#27)

* Ignoring "Obj" field

"Obj" field refers to the original `FuncDecl` object of method
defination where that function is getting called. This is inside
CallExp. In the event method call occurs before the function declration.
In that case while generating Json `FuncDecl` object gets added inside
`CallExp`. At the place of original `FuncDecl` node, we get the
reference node id.

Hence ignoring this field at the momemnt.

* Concurrency changes

Made changes to run the parser in parallel threads without any errors.
We are limiting the number threads to available number of processors on
the machine.