最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Are there any javascript frameworks for parsingauto-completing a domain specific language? - Stack Overflow

programmeradmin2浏览0评论

I have a grammar for a domain specific language, and I need to create a javascript code editor for that language. Are there any tools that would allow me to generate a) a javascript incremental parser b) a javascript auto-plete / auto-suggest engine?

Thanks!

I have a grammar for a domain specific language, and I need to create a javascript code editor for that language. Are there any tools that would allow me to generate a) a javascript incremental parser b) a javascript auto-plete / auto-suggest engine?

Thanks!

Share Improve this question asked Feb 24, 2011 at 20:14 franck102franck102 1611 silver badge3 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 4

An Example of implementing content assist (auto-plete) using Chevrotain Javascript Parsing DSL:

https://github./SAP/chevrotain/tree/master/examples/parser/content_assist

Chevrotain was designed specifically to build parsers used (as part of) language services tools in Editors/IDEs. Some of the relevant features are:

  • Automatic Error Recovery / Fault tolerance because editors and IDEs need to be able to handle 'mostly valid' inputs.
  • Every Grammar rule may be used as the starting rule as an Editor/IDE may only want to implement incremental parsing for performance reasons.

You may want jison, a js parser generator. In terms of auto-plete / auto-suggest...most of the stuff out there I know if more based on word pletion rather than code pletion. But once you have a parser running I don't think that part is too difficult..

This is difficult. I'm doing the same sort of thing myself.

One approach is:

You need is a parser which will give you an array of the currently possible ASTs for the text up until the token before the current cursor position.

From there you can see the next token can be of a number of types (usually just one), and do the pletion, based on the partial text.

If I ever get my incremental parser working, I'll send a link.

Good luck, and let me know if you find a package which does this.

Chris.

发布评论

评论列表(0)

  1. 暂无评论