Generate linenumber if needed after inlining

This commit is contained in:
Michael Bogdanov
2015-03-24 12:48:50 +03:00
parent 8cd496556c
commit c582b1d9ce
12 changed files with 399 additions and 2 deletions
@@ -0,0 +1,82 @@
fun testProperLineNumber(): String {
var exceptionCount = 0;
try {
test().
test().
fail()
}
catch(e: AssertionError) {
val entry = (e as java.lang.Throwable).getStackTrace()!!.get(1)
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("chainCalls.kt:6" != actual) {
return "fail 1: ${actual}"
}
exceptionCount++
}
try {
call().
test().
fail()
}
catch(e: AssertionError) {
val entry = e.getStackTrace()!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("chainCalls.kt:21" != actual) {
return "fail 2: ${actual}"
}
exceptionCount++
}
try {
test().
fail()
}
catch(e: AssertionError) {
val entry = e.getStackTrace()!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("chainCalls.kt:34" != actual) {
return "fail 3: ${actual}"
}
exceptionCount++
}
try {
test().fail()
}
catch(e: AssertionError) {
val entry = e.getStackTrace()!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("chainCalls.kt:46" != actual) {
return "fail 4: ${actual}"
}
exceptionCount++
}
return if (exceptionCount == 4) "OK" else "fail"
}
fun box(): String {
return testProperLineNumber()
}
public fun checkEquals(p1: String, p2: String) {
throw AssertionError("fail")
}
inline fun test(): String {
return "123"
}
inline fun String.test(): String {
return "123"
}
fun String.fail(): String {
throw AssertionError("fail")
}
fun call(): String {
return "xxx"
}
@@ -0,0 +1,62 @@
fun testProperLineNumber(): String {
var exceptionCount = 0;
try {
test() fail
call()
}
catch(e: AssertionError) {
val entry = (e as java.lang.Throwable).getStackTrace()!!.get(1)
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("infixCalls.kt:4" != actual) {
return "fail 1: ${actual}"
}
exceptionCount++
}
try {
call() fail
test()
}
catch(e: AssertionError) {
val entry = e.getStackTrace()!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("infixCalls.kt:17" != actual) {
return "fail 1: ${actual}"
}
exceptionCount++
}
try {
call() fail test()
}
catch(e: AssertionError) {
val entry = e.getStackTrace()!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("infixCalls.kt:30" != actual) {
return "fail 1: ${actual}"
}
exceptionCount++
}
return if (exceptionCount == 3) "OK" else "fail"
}
fun box(): String {
return testProperLineNumber()
}
public fun checkEquals(p1: String, p2: String) {
throw AssertionError("fail")
}
inline fun test(): String {
return "123"
}
fun String.fail(p: String): String {
throw AssertionError("fail")
}
fun call(): String {
return "xxx"
}
@@ -0,0 +1,106 @@
fun testProperLineNumberAfterInline(): String {
var exceptionCount = 0;
try {
checkEquals(test(),
"12")
}
catch(e: AssertionError) {
val entry = (e as java.lang.Throwable).getStackTrace()!!.get(1)
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("simpleCallWithParams.kt:4" != actual) {
return "fail 1: ${actual}"
}
exceptionCount++
}
try {
checkEquals("12",
test())
}
catch(e: AssertionError) {
val entry = e.getStackTrace()!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("simpleCallWithParams.kt:17" != actual) {
return "fail 2: ${actual}"
}
exceptionCount++
}
return if (exceptionCount == 2) "OK" else "fail"
}
fun testProperLineForOtherParameters(): String {
var exceptionCount = 0;
try {
checkEquals(test(),
fail())
}
catch(e: AssertionError) {
val entry = e.getStackTrace()!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("simpleCallWithParams.kt:35" != actual) {
return "fail 3: ${actual}"
}
exceptionCount++
}
try {
checkEquals(fail(),
test())
}
catch(e: AssertionError) {
val entry = e.getStackTrace()!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("simpleCallWithParams.kt:49" != actual) {
return "fail 4: ${actual}"
}
exceptionCount++
}
try {
checkEquals(fail(), test())
}
catch(e: AssertionError) {
val entry = e.getStackTrace()!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("simpleCallWithParams.kt:62" != actual) {
return "fail 5: ${actual}"
}
exceptionCount++
}
try {
checkEquals(fail(), test())
}
catch(e: AssertionError) {
val entry = e.getStackTrace()!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("simpleCallWithParams.kt:74" != actual) {
return "fail 6: ${actual}"
}
exceptionCount++
}
return if (exceptionCount == 4) "OK" else "fail"
}
fun box(): String {
val res = testProperLineNumberAfterInline()
if (res != "OK") return "$res"
return testProperLineForOtherParameters()
}
public fun checkEquals(p1: String, p2: String) {
throw AssertionError("fail")
}
inline fun test(): String {
return "123"
}
fun fail(): String {
throw AssertionError("fail")
}