Alexander Shustanov

- 活动总数 70
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 7
- 订阅数 22
-
已编辑于 Why did you remove UAST classes without deprecation and ScheduledForRemoval annotation?
已回答Hi! We use UAST in our plugin. Last three or two releases you break UAST API without warning. How long are you going to do that? We used class UastLiteralReferenceProvider and you removed it in 201... -
创建于 Project model loading and maintenance
Hello! We are developing a plugin that builds a model for project written with some framework. The model is built to provide user simple method to do the framework specific actions with project. So... -
创建于 TypeMigration refactoring for kotlin
已回答Is there any alternative for type migration refactoring for kotlin? -
已编辑于 All library snapshots are added to com.intellij.openapi.roots.libraries.Library source roots.
When I start find usages of some class, and the class is used by some library of SNAPSHOT version, idea found lots of duplicated usages, for one for every ever downloaded snapshot. Is it a normal b... -
创建于 DomElement createMockCopy returns DomElement with children being shuffled.
The result of DomElement.createMockCopy has children sorted not in the initial order. It doesn't depends on physical copy or not. -
创建于 XmlAttributeValue rename
Hi! I have an xml format, that describes some objects. For example: <?xml version="1.0" encoding="UTF-8" standalone="no"?><views> <view class="Foo" name="foo-view" extends="foo-another-view"> ... -
创建于 Backward compatibility problem with UAST
已回答Encapsulation does not work in inline function, so such code is dangerous: inline fun <reified T : UElement> PsiElement?.toUElementOfType(): T? = this?.let { UastFacade.convertElementWithParent(th... -
创建于 TransactionGuard#submitTransactionLater vs Application#invokeLater
已回答Hi! Could you describe the difference between these methods? When I should use one, and when another. -
已编辑于 Kotlin-Java type conversion
Hi! Is there any instrument to get Kotlin types from Java PsiType? For example, I have java type: java.util.Set<entitypack.Entity> it kotlin it should be kotlin.collections.Set<entitypack.Entity<*>... -
创建于 How to get kotlin class from UParameter type?
已回答I have some code, that searches for usages of some method first parameter type. The code (uMethod.uastParameters[0] as UVariable).type returns `PsiClassType`, that resolves to some `ClsClassImpl`. ...