Scratch: substring output and print it to separate tool window if it is too long

^KT-24016 In Progress
This commit is contained in:
Natalia Selezneva
2018-05-07 14:41:24 +03:00
parent 613ea94376
commit e5a40c8c7f
8 changed files with 32 additions and 4 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
foo.forEach { // ERROR: Unresolved reference: foo; Cannot choose among the following candidates without completing type inference:
foo.forEach { // ERROR: Unresolved reference: foo; Cannot choose among the following candidates wi...
1 + 1
}
+2
View File
@@ -0,0 +1,2 @@
val a = "a".repeat(100) // RESULT: val a: String
a // RESULT: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa...
+2
View File
@@ -0,0 +1,2 @@
val a = "a".repeat(100)
a
+2
View File
@@ -0,0 +1,2 @@
val a = "a".repeat(100)
a // RESULT: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa...