主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Gregory Shrago
活动总数
512
最后的活动
2023年08月14日 18:03
成员加入日期
2007年01月16日 18:03
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
214
活动概览
帖子(3)
评论(295)
按最近的活动排序
最近的活动
投票数
创建于
2014年02月21日 16:04
#auto recover predicates as well as token PSI accessors are supported in the latest Grammar-Kit version only. Unfortunately (or luckily) most fixes and new features are always available in the late...
社区
IntelliJ IDEA Open API and Plugin Development
Grammar-Kit and Identifier
0 票
创建于
2014年02月26日 15:55
Just comment the recoverWhile(".+Declaration")="#auto" line.I thought you would put several declarations in a file, with just one declaration there's no need in recovering.
社区
IntelliJ IDEA Open API and Plugin Development
Grammar-Kit and Identifier
0 票
创建于
2014年08月15日 12:26
Hi Liudmila!Thanks for mentioning. There is indeed a bug in LiverPreviewParser which is now fixed in 1.1.10_1 release.The generated parser doesn't suffer from this: I've included your sample in Gra...
社区
IntelliJ IDEA Open API and Plugin Development
Grammar-kit : psi tree for prefix expressions
0 票
创建于
2014年09月05日 23:25
Here's my workflow:1. I use "regexp:" tokens mostly for quick language prototyping with "Live Preview" mode which doesn't involve any project and code generation.The main language structure first a...
社区
IntelliJ IDEA Open API and Plugin Development
Case-insensitive Grammar-Kit tokens?
0 票
创建于
2014年11月19日 12:24
Just tweak ElixirTokenType#toString() as you like: @Override public String toString() { return "ElixirTokenType." + super.toString(); }
社区
IntelliJ IDEA Open API and Plugin Development
Overriding token name in PsiErrorElement
0 票
创建于
2014年11月17日 18:00
Please see the priority table via QuickDoc:Priority table:0: BINARY(stabOperation)1: PREFIX(captureOperation)2: BINARY(inMatchOperation)3: BINARY(whenOperation)4: BINARY(typeOperation)5: BINARY(pip...
社区
IntelliJ IDEA Open API and Plugin Development
Operator (!==) winning over keyword identifier (!==:)
0 票
创建于
2015年03月04日 21:28
That's an interesting observation!I've just checked the Java PSI implementation and found out that gutter mark "Unclosed comment" is generated by Java Annotator.See com.intellij.codeInsight.daemon....
社区
IntelliJ IDEA Open API and Plugin Development
Custom Language: Unclosed comment cannot raise an error
0 票
创建于
2015年03月04日 21:32
Try enclosing cast in parenthesis like this;type_cast_expression ::= ("(" type ")") expressionor even extract operator like this:type_cast_expression ::= cast_op expressionprivate cast_op ::= "(" t...
社区
IntelliJ IDEA Open API and Plugin Development
Grammar-Kit : Implicit adding of pinned parts for PREFIX expressions
0 票
创建于
2015年05月18日 14:25
Hi,There's no automation at the moment. The reason behind that is:The generated JFlex file is really a stub and not a production-grade lexer definition.Just one state for all keywords and puntuatio...
社区
IntelliJ IDEA Open API and Plugin Development
Automate class generation on build
0 票
创建于
2015年11月18日 22:15
It was pushed down the hierarchy a bit:com.intellij.database.dataSource.AbstractDataSource#performJdbcOperation
社区
IntelliJ IDEA Open API and Plugin Development
What is the replacement for "performJdbcOperation"?
0 票
«
第一页
‹
上一页
下一页
›
最后
»