主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Konstantin Ulitin
活动总数
257
最后的活动
2025年07月08日 13:25
成员加入日期
2012年03月11日 13:50
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
99
活动概览
文章(0)
帖子(0)
评论(158)
按最近的活动排序
最近的活动
投票数
创建于
2020年05月13日 15:33
If you want to check how TypeScript suggests completion for all modules from scratch files, you may look at `com.intellij.lang.javascript.psi.resolve.JSResolveUtil#getResolveScope`. Basically, it u...
社区
IntelliJ IDEA Open API and Plugin Development
Get auto complete working in a custom LightVirtualFile instance
0 票
创建于
2019年12月11日 09:18
I'm glad that it worked for you! To fix parameter info, you need to ensure that doSomething in import statement is resolved to the method of the class. ((ES6ImportedExportedDefaultBinding)resolveRe...
社区
IntelliJ IDEA Open API and Plugin Development
Is there any way to add JavaScript type inference logic?
0 票
创建于
2019年12月10日 13:32
It should be processed in ES6TypeEvaluator#addTypeFromDialectSpecificElements. ((ES6ImportedExportedDefaultBinding)resolveResult).findReferencedElements() is called there and passes referenced elem...
社区
IntelliJ IDEA Open API and Plugin Development
Is there any way to add JavaScript type inference logic?
0 票
创建于
2019年12月10日 13:00
Oh, to have your reference in 'foo/bar' working for type evaluation, you need to add an extension of com.intellij.lang.javascript.psi.resolve.JSModuleReferenceContributor Like here. And don't forge...
社区
IntelliJ IDEA Open API and Plugin Development
Is there any way to add JavaScript type inference logic?
0 票
已编辑于
2019年12月09日 10:23
I think the better way to solve this is to do two things: Make 'module' be resolved to your special file or PSI element. If it's already done, then Implement FrameworkIndexingHandler#addTypeFromRe...
社区
IntelliJ IDEA Open API and Plugin Development
Is there any way to add JavaScript type inference logic?
0 票
创建于
2019年11月21日 10:56
Yes, thank you, but sadly this is now what I expected to see. How many breakpoints do you have? Can you please check if setting js.debugger.async.call.stack.depth to 0 in Help | Find Action... | Re...
社区
WebStorm
Webstorm debugging: startup time went from 15s to 50s
0 票
已编辑于
2019年11月20日 10:35
Hi Jeffery, Could you please share any whole line from that log, starting from {"timestamp": "...", "IN": {"method":"Debugger.paused"..? Somewhere from the middle.
社区
WebStorm
Webstorm debugging: startup time went from 15s to 50s
0 票
创建于
2019年07月24日 14:53
MultiHostInjector should behave the same way as LanguageInjector in most cases. Do you use exactly JavascriptLanguage.INSTANCE language for injection? It's hard to say what goes wrong without seein...
社区
IntelliJ IDEA Open API and Plugin Development
Different behavior between LanguageInjector and MultiHostInjector
0 票
创建于
2019年02月08日 07:09
Unfortunately, JavaScript and Go debuggers which I'm aware of using it are not open-source.
社区
IntelliJ IDEA Open API and Plugin Development
How to get started writing a custom (js like language) script debugger?
0 票
创建于
2019年02月07日 16:05
It would be not so easy to reuse JavaScript debugger, but you may take a look at intellij.platform.scriptDebugger modules, on which JavaScript debugger is also based.
社区
IntelliJ IDEA Open API and Plugin Development
How to get started writing a custom (js like language) script debugger?
0 票
«
第一页
‹
上一页
下一页
›
最后
»