主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Gregory Shrago
活动总数
512
最后的活动
2023年08月14日 18:03
成员加入日期
2007年01月16日 18:03
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
214
活动概览
帖子(3)
评论(295)
按最近的活动排序
最近的活动
投票数
创建于
2009年10月23日 13:22
Ok, it's there.
社区
IntelliJ IDEA Open API and Plugin Development
Registering JAM w/ annotation for PsiPackageStatement in package-info.java
0 票
创建于
2012年01月12日 14:34
Jan,You're right, the 2 step is optional but very useful. Lots of IntelliJ platform functionality depends on ElementManipulator API: reference providers, inspections. In case manipulator is availab...
社区
IntelliJ IDEA Open API and Plugin Development
language injection into string literals
0 票
创建于
2012年06月08日 15:07
There're quick documentation and HOWTO pages right on github:https://github.com/JetBrains/Grammar-Kit/blob/master/README.mdhttps://github.com/JetBrains/Grammar-Kit/blob/master/HOWTO.mdGeneratedPars...
社区
IntelliJ IDEA Open API and Plugin Development
[ANN] Grammar-Kit: generate parser from grammar
0 票
创建于
2012年10月17日 14:05
We have a number of languages with PSI generated by Grammar-Kit. Currently none of them uses stubs that's why Grammar-Kit lacks support for stubs. Eventually it will be added but I can't say when e...
社区
IntelliJ IDEA Open API and Plugin Development
Grammar-Kit and stub trees
0 票
创建于
2013年01月30日 19:54
Assuming that I got it right that you want to switch elementType of the ID node to actorDef from actorRef if and only if the actor with that ID is not already parsed.I would do the following:{ st...
社区
IntelliJ IDEA Open API and Plugin Development
How to produce a slightly different psiTree from astTree?
0 票
创建于
2013年01月30日 20:13
Is it possible for you to create a screencast to demonstrate the problem?BAD_CHARACTER highlighting means that the JFlex lexer returns BAD_CHARACTER tokenTypes for the tokens.Possible answer:Using ...
社区
IntelliJ IDEA Open API and Plugin Development
Syntax Highlighting gets stuck
0 票
创建于
2013年05月09日 14:36
The problem is that lexer highlighting pass works on a VirtualFile (file text) level.This happens before any parsing takes place if ever.(For example for large files no parsing is performed at all....
社区
IntelliJ IDEA Open API and Plugin Development
Token mapped with PsiBuilder.remapCurrentToken still highlighted as original token
0 票
创建于
2013年07月26日 14:34
If I understand you correctly you have something like:class moduleName.className { .. }where moduleName implicitly defines the "module".I don't think this should be solved on a grammar level.The on...
社区
IntelliJ IDEA Open API and Plugin Development
Macros support in custom language
0 票
创建于
2013年08月19日 17:07
{ tokens = [ string = 'regexp:\"([^\\\"]|\\.)+\"' id = 'regexp:[\d|\w]+' ]}root ::= expr *expr ::= id '=' string ';' { pin=2; recoverUntil=recover }recover ::= !(id '=')Here's m...
社区
IntelliJ IDEA Open API and Plugin Development
Help me with grammar kit plz
0 票
创建于
2013年09月23日 17:35
1. Grammar-Kit parser expects lexer to emit tokens defined in (generated to)com.qq.coqide.syntax.parser.CoqTokenTypesYou can always check these kind of problems using debugger by placing breakpoint...
社区
IntelliJ IDEA Open API and Plugin Development
Parser not reducing expressions
0 票
«
第一页
‹
上一页
下一页
›
最后
»