Lukasz Czerwinski
Lukasz Czerwinski
Some food for thought at https://github.com/pegjs/pegjs/issues/607#issuecomment-479127423 and following comments.
@mhagmajer Sounds good to me.
Task: - [ ] rename folder askjsx to askcompiler - [ ] update documentation on Notion and README: rename all instances of AskJSX to AskCompiler
@pkarw , the issue I see here is that currently code like `mysql:findOne()` is just a syntactic sugar over `findOne(mysql)`, which means that regardless what kind of variable `mysql` is,...
On the other hand, what _I think_ we _could_ do is to have a way to return a MySQL object which has a number of *fields*, each of them being...
This way we could have: ``` // mysql - a resource that has several fields with functions, e.g. connect conn = mysql.connect('host', 'user', 'pass') conn.useDb('dbname') row = conn.findOne('text to search...
Hello @hunarjain , I am very happy you volunteer to do this task - it would be a useful syntax structure. You will need to edit a grammar file (https://github.com/xFAANG/askql/blob/master/src/askscript/parser/askscript.grammar.pegjs)...
This is actually related to immutability of objects in AskScript, so `seen[ints[i]] = true;` is invalid. However, currently there is no resource which could assign values to an existing object...
Blocked on #257