Support parameter annotations. Fix class path and test data

This commit is contained in:
Andrey Breslav
2013-10-30 15:44:57 +04:00
parent c034d5e675
commit 083644ea43
11 changed files with 43 additions and 34 deletions

View File

@@ -1,8 +1,8 @@
package test
public trait LoadIterableWithNullability</*0*/ T> : java.lang.Object {
public abstract fun getIterable(): jet.MutableIterable<T>
public abstract fun getReadOnlyIterable(): jet.Iterable<T>
public abstract fun setIterable(/*0*/ p0: jet.MutableIterable<T>): jet.Unit
public abstract fun setReadOnlyIterable(/*0*/ p0: jet.Iterable<T>): jet.Unit
org.jetbrains.annotations.Mutable() public abstract fun getIterable(): jet.MutableIterable<T>
org.jetbrains.annotations.ReadOnly() public abstract fun getReadOnlyIterable(): jet.Iterable<T>
public abstract fun setIterable(/*0*/ org.jetbrains.annotations.Mutable() p0: jet.MutableIterable<T>): jet.Unit
public abstract fun setReadOnlyIterable(/*0*/ org.jetbrains.annotations.ReadOnly() p0: jet.Iterable<T>): jet.Unit
}