Wojciech Potiopa

Results 11 issues of Wojciech Potiopa

- Checked on 5.1.0 version of library with android 6.0 (emulator) - I have single times exapandable items containing lists of not expandable sub items in FlexibleAdapter. - All items...

When passing MemberClass reference to `ExceptionAssert.hasType` It fails to compile as `typeCondition` requires `Class|Boolean(ClassModel)` The first union case should be `ClassModel` Example: ```ceylon mport ceylon.test { test, assertThatException } class...

Lately this requirement has been introduced, from this time we need to include settings.xml into .m2 or setup each ceylon project separately to override defualt ceylon module resolver url of...

This issue hold information on what has been reviewed and needs to be reviewed before 1.4.0 release can happen. To contribute take a commit from list located below refering to...

Unit test ```ceylon class TestClass(){ shared late String attr; } shared test void checkMemberSet(){ value test=TestClass(); value val=`value TestClass.attr`; val.memberSet(test, "bleh"); } ``` ```ceylon java.lang.NullPointerException at java.lang.Class.searchMethods(Unknown Source) at java.lang.Class.privateGetMethodRecursive(Unknown...

```ceylon import ceylon.test { test } shared class ConstructorTestClass{ String param; shared new (String param){ this.param = param;} } shared class AnnotationsFromConstructorParameter() { shared test void shouldGetAnnotationsFromConstructorParameter(){ assert (exists constructor...

When using metamodel, for object information extraction, like member attributes or member functions. It would be nice to have possibility to switch over this extracted values. For example I would...

Hi, this took me a while to pin down the issue as every try to extract the problem into some small test module from the project, was not invoking the...