主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Gregory Shrago
活动总数
512
最后的活动
2023年08月14日 18:03
成员加入日期
2007年01月16日 18:03
关注
0 名用户
关注者数
2 名用户
投票数
0
订阅数
214
活动概览
文章(0)
帖子(3)
评论(295)
按最近的活动排序
最近的活动
投票数
创建于
2017年07月20日 23:01
Hi! Something like the following will do: databaseSystem.getModel().traverser().expand(o -> o instanceof DasNamespace).filter(DasRoutine.class).map(o -> o.getName()).toSet()
社区
IntelliJ IDEA Open API and Plugin Development
Getting Routines/Procedures name
1 票
创建于
2017年07月12日 15:07
https://youtrack.jetbrains.com/issue/DBE-2410
社区
IntelliJ IDEA Users
SQL Dialect vs Informix.
0 票
创建于
2017年06月13日 12:34
Check out whitespace handling section here: http://www.jetbrains.org/intellij/sdk/docs/reference_guide/custom_language_support/implementing_parser_and_psi.html
社区
IntelliJ IDEA Open API and Plugin Development
custom language plugin: grammar-kit works, plugin doesn't
0 票
创建于
2017年06月11日 20:28
It is a bug in generator regarding dash-separated rule names (I always use underscore-separated..) It's fixed now in the latest dev build, so you may grab it from the project github page: https://g...
社区
IntelliJ IDEA Open API and Plugin Development
Custom Language Support - newbie issue...
0 票
创建于
2017年05月12日 17:21
Image spec is: <file-path-or-URL>[,<opacity>[,<fill-type>[,<placement>]]] 1. opacity: number in percents 2. fill type: PLAIN, SCALE, TILE 3. placement: CENTER, TOP_CENTER, BOTTOM_CENTER, TOP_LEFT, ...
社区
IntelliJ IDEA Open API and Plugin Development
Editor opacity programmatically
1 票
创建于
2017年04月24日 20:03
You need to add the following to IntelliJ SDK: /plugins/DatabaseSupport/lib/database-openapi.jar And optionally its sources: /lib/src/src_database-openapi.zip
社区
IntelliJ IDEA Open API and Plugin Development
Not able to use com.intellij.database in a plugin
0 票
创建于
2017年03月02日 09:14
Here's the snippet of how Pratt-parsing grammar shall look like in your case (and the QuickDoc shows the Priority Table part now on the screenshot): Expression ::= CommaExpression | AssignExpress...
社区
IntelliJ IDEA Open API and Plugin Development
Expression handling in grammar-kit - issue with deep trees
1 票
已编辑于
2017年02月20日 10:15
I use this QuickDoc popup to check what rules and tokens violate expression parsing contract. It shall say "Rule contains no public rules and no tokens" at the bottom and display priority table. If...
社区
IntelliJ IDEA Open API and Plugin Development
Expression handling in grammar-kit - issue with deep trees
0 票
创建于
2017年02月17日 09:08
For expression parsing one can use Pratt parsing approach (the simplest bottom-up parsing case when it becomes just a loop). This is exactly what you need in that case. Expression parsing is descri...
社区
IntelliJ IDEA Open API and Plugin Development
Expression handling in grammar-kit - issue with deep trees
0 票
已编辑于
2017年02月09日 14:07
Manual element type remapping: 1. PsiBuilder API way: rule ::= some <<remap>> // remap after "some" is successfully parsed public static boolean remap(builder, level) { m = builder.getLatestDo...
社区
IntelliJ IDEA Open API and Plugin Development
Speeding up negative look-ahead with GrammarKit-based parsers
0 票
«
第一页
‹
上一页
下一页
›
最后
»