Maxim Sukharev
Maxim Sukharev
actually autopolyfiller is broken already. > Error: Cannot find module 'polyfill' I think it's because https://github.com/jonathantneal/polyfill default brunch is "deprecated" now.
@azproduction some of current polyfills are broken. For example Array.prototype.some. But polyfill-service fixed it.
I can't. Because I can't add script tag in my page. I just added dist/react.js in my build process. Anyway I build component-inspector without compressing by basis-tools and found why...
I had 113 repositories. All public repos of src-d organization. ```bash curl https://api.github.com/orgs/src-d/repos?per_page=100 > repos_list.json mkdir -p repos for repo in `cat repos_list.json | jq -r '.[] | .clone_url'` do...
``` $ ./gitbase version gitbase (v0.18.0-beta.3) - build 11-27-2018_11_31_37 ``` Easily reproducible for me. Tried with empty everything. Use the script above to get repositories. Then: ``` mysql> select count(*)...
Hi @grouville ! You are correct. The predicates are not implemented in this library. Currently, the binding just exposes Tree-sitter C library in Go without (almost) any logic on top....
Hi @FeiyouG ! Thank you for your contribution. I have noticed in the current form the parser is a bit hard to use. According to documentation: > The parser is...
Hi @StevenACoffman ! I'm a bit reluctant to merge this grammar into master at this point, but here you can see how to integrate the grammar: https://github.com/smacker/go-tree-sitter/pull/58 Files `sqlite/parser.c` and...
hi @m-kru ! Is there any particular reason you need it to be `unit32`? Int type is [at least 32 bytes](https://pkg.go.dev/builtin#int). I chose to use `int` instead of `unit32` here...
hi @liricooli ! Thanks! Could you please add a test? Here is an example how to do it: https://github.com/smacker/go-tree-sitter/pull/60