Alexandr Fedorov
- 活动总数 24
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 8
-
创建于 PyZero in PyCharm doesn't recognize `screen` variable
I use simple example from PyZero tutorial in PyCharmimport pgzrun WIDTH = 300 HEIGHT = 300 def draw(): screen.fill((128, 0, 0)) pgzrun.go()The variable `screen` is highlighted as error - Unr... -
创建于 Setup completition provider in the LightPlatformCodeInsightFixture4TestCase
I want to test my completition provider. How do I set it up in TestFixture - LightPlatformCodeInsightFixture4TestCase It looks like SDK test framework does not use plugin.xml -
创建于 Kotlin Coroutines version in CLion plugin
已回答I am creating plugin for CLion and need kotlin coroutines. The version that is bundled with intellij plugin is 1.2.1. Intellij still sees only this version when I add implementation("org.jetbrains... -
创建于 Can't find usage of a method from template class
已回答I have a simple example of using templates. struct Message { int value;};class ConcreteTemplateMessageReceiver {public: Message receive() { return {}; }};template<typename R>class ...