fixed: DEBUG_INFO_ERROR_ELEMENT should be visible in tests

This commit is contained in:
Svetlana Isakova
2012-11-17 19:53:18 +04:00
parent 993d3a3469
commit d0a6f6252d
35 changed files with 92 additions and 94 deletions
+4 -4
View File
@@ -4,7 +4,7 @@ val y = object {
val a = <error>y</error>
}
val z = y.a;
val z = y.<error>a</error>;
object A {
val x = A
@@ -12,11 +12,11 @@ object A {
val a = object {
{
b + 1
<error>b</error> <error>+</error> 1
}
val x = b
val x = <error>b</error>
val y = 1
}
val b = <error>a</error>.x
val b = <error>a</error>.<error>x</error>
val c = a.y