blob: 40a664d20698056245ff7c5975bd874d270aa624 [file] [log] [blame]
# Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE.md file.
main.dart.patch: |
// Test that multiple schema changes in subclasses work as intended.
class A {
var x;
<<<< "instance is null"
var y;
==== "x = 0"
==== ["x = 3","y = null","z = 2"]
var y;
>>>>
}
class B extends A {
}
class C extends B {
var z;
<<<<
====
var a;
====
var a;
var b;
>>>>
}
var instance;
main() {
if (instance == null) {
print('instance is null');
instance = new C();
instance.x = 0;
instance.y = 1;
instance.z = 2;
} else {
print('x = ${instance.x}');
if (instance.x == 3) {
print('y = ${instance.y}');
print('z = ${instance.z}');
}
instance.x = 3;
}
}