i18n: fix bundle messages/testData messages where necessary
This commit is contained in:
committed by
Dmitry Gridin
parent
e1cb561398
commit
1dded486f1
@@ -1,4 +1,4 @@
|
||||
// "Make 'x' final" "true"
|
||||
// "Make 'x' 'final'" "true"
|
||||
|
||||
open class My(open val x: Int) {
|
||||
val y = <caret>x
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Make 'x' final" "true"
|
||||
// "Make 'x' 'final'" "true"
|
||||
|
||||
open class My(val x: Int) {
|
||||
val y = x
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Make 'My' final" "true"
|
||||
// "Make 'My' 'final'" "true"
|
||||
|
||||
open class My(open val x: Int) {
|
||||
val y = <caret>x
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Make 'My' final" "true"
|
||||
// "Make 'My' 'final'" "true"
|
||||
|
||||
class My(open val x: Int) {
|
||||
val y = x
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Make 'init' final" "true"
|
||||
// "Make 'init' 'final'" "true"
|
||||
|
||||
open class My {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Make 'init' final" "true"
|
||||
// "Make 'init' 'final'" "true"
|
||||
|
||||
open class My {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Make 'My' final" "true"
|
||||
// "Make 'My' 'final'" "true"
|
||||
|
||||
open class My {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Make 'My' final" "true"
|
||||
// "Make 'My' 'final'" "true"
|
||||
|
||||
class My {
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Make 'My' final" "true"
|
||||
// "Make 'My' 'final'" "true"
|
||||
|
||||
open class My {
|
||||
init {
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Make 'My' final" "true"
|
||||
// "Make 'My' 'final'" "true"
|
||||
|
||||
class My {
|
||||
init {
|
||||
|
||||
Reference in New Issue
Block a user