主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Gregory Shrago
活动总数
512
最后的活动
2023年08月14日 18:03
成员加入日期
2007年01月16日 18:03
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
214
活动概览
帖子(3)
评论(295)
按最近的活动排序
最近的活动
投票数
创建于
2013年03月05日 15:02
Grammar-Kit supports left recursion in one special case: Pratt-like expression parsing.Here's an example: https://github.com/JetBrains/Grammar-Kit/blob/master/testData/generator/ExprParser.bnfAnoth...
社区
IntelliJ IDEA Open API and Plugin Development
Starting point for a Java-like grammar for Grammar-Kit?
0 票
创建于
2013年03月07日 23:21
I'm interested in fixing any problems with Live Preview so you can send me anything to reproduce the problem (email or github). It will be fixed.
社区
IntelliJ IDEA Open API and Plugin Development
Starting point for a Java-like grammar for Grammar-Kit?
0 票
创建于
2013年06月03日 17:55
In order to simplify this apublic DataSource.getConnection(Project)method is added to IDEA 13 and IDEA 12.1.X codebases.
社区
IntelliJ IDEA Open API and Plugin Development
Can I access and use the IDEA Data Sources?
0 票
创建于
2012年12月18日 14:40
Any SQL dialect uses generated + handwritten lexers approach.So you can hack OracleLexer or even SqlLexer class instead. ;-)I've added "." as allowed character so your case will be covered.Expect t...
社区
IntelliJ IDEA Open API and Plugin Development
Extend SQL dialect?
0 票
创建于
2013年09月27日 17:56
Dear Terence,We do care in fact. Unfortunately sometimes it is hard to help without the ability to really reproduce the problem.The AbstratTreeUi you mentioned is a very complicated piece of code w...
社区
IntelliJ IDEA Open API and Plugin Development
Suggestions for tracking down a null pointer exception?
0 票
创建于
2013年10月21日 14:48
There's no need to repeat the work of other authors. One can read about PEG and IntelliJ parsing architecture somewhere else and then discover Grammar-Kit which just combines all the above.https://...
社区
IntelliJ IDEA Open API and Plugin Development
Grammar kit tutorial(s)
0 票
创建于
2013年10月24日 23:23
There're different levels of problem reporting: lexer errors, parser errors and annotators/inspections reports.String literal contents related problems belong to 1.lexer level or 2.semantic level, ...
社区
IntelliJ IDEA Open API and Plugin Development
Parsing strings and other various basic types
0 票
创建于
2013年12月03日 12:04
I've checked the plugin sources on github. Not sure (I haven't run them) but..PsiErrorElements are created when PsiBuilder.error() or PsiBuilder.Marker.error() methods are used. The difference is t...
社区
IntelliJ IDEA Open API and Plugin Development
error squiggly red underline off-by-one in parser
0 票
创建于
2014年01月08日 13:44
You need an Annotator for that.Here's the explanation: Syntax Highlighting and Error Highlighting
社区
IntelliJ IDEA Open API and Plugin Development
BNF Rule Syntax Highlighting for Custom Language
0 票
创建于
2014年01月28日 13:40
You seem to put too much of syntax logic into your lexer.IntelliJ IDEA platform assumes lexers are fast and uses them very often.Solution: decouple lexer & parser logic as it is usually done: Make ...
社区
IntelliJ IDEA Open API and Plugin Development
Problems with performance in custom language plugin
0 票
«
第一页
‹
上一页
下一页
›
最后
»