Andrew Hlynskyi

Results 145 comments of Andrew Hlynskyi

I've left an additional comment for you here: https://github.com/tree-sitter/tree-sitter/discussions/1100#discussioncomment-726482 related to this issue, please, give it a look.

@mjambon The `heredoc_content` doesn't have visible content in the above screenshot because it is multi line token and contains `\n`. I didn't implement printing multi line tokens properly yet.

@mjambon I've shared new improvements in https://github.com/ahlinc/tree-sitter/pull/4 and now it also prints multi line tokens, but some times with a bit broken indentation for such tokens sot there are still...

@mjambon Awesome investigation! :tada: You have revealed all the details of what I suspected a few months ago. At that time I also experienced difficulties due to insufficient visualization. If...

@mjambon It worth to add that regexes in `token()` and `token.immediate()` also lead to lost nodes. ```js module.exports = grammar({ name: 'i1156', rules: { program: $ => choice( token('a'), //...

Visualization for the grammar in description:

I thought a lot about this issue and for now I have the following suggestions: - Clarify that there would be 3 types of nodes: - **Named** - those are...

It looks like you have the same problem #86, try to follow instructions from the official Electron documentation: https://www.electronjs.org/docs/tutorial/using-native-node-modules

@talbergs no, it's not duplicate, the #81 merge just fixed SegmentationFault for current `Nan` implementation. Napi is coming soon, it requires more work than this old PR.

I recalled a context of this #1096