Refactoring: AbstractResolvedCallsTest

Render resolved call to a separate file
This commit is contained in:
Svetlana Isakova
2014-05-30 09:59:44 +04:00
parent b2c2e1811c
commit 29ab166e1b
77 changed files with 770 additions and 208 deletions
@@ -1,7 +1,4 @@
// !ONLY_ARGUMENTS
// !CALL: foo
// !ARG_1: A() = ArgumentMatch(a : A, SUCCESS)
// !ARG_2: "" = ArgumentMatch(s : String, SUCCESS)
class A {}
@@ -0,0 +1,23 @@
// !CALL: foo
class A {}
fun foo(a: A) {}
fun foo(a: A, s: String) {}
fun foo(a: A, any: Any) {}
fun bar() {
foo(A(), "")
}
Resolved call:
Explicit receiver kind = NO_EXPLICIT_RECEIVER
This object = NO_RECEIVER
Receiver argument = NO_RECEIVER
Value arguments mapping:
SUCCESS a : A = A()
SUCCESS s : String = ""