Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 // Getters and setters can have different types, but it is a warning if the | |
| 5 // two types are not assignable. | |
| 6 | |
| 7 int bar = 499; | |
| 8 | |
| 9 int /// 01: static type warning | |
| 10 get foo() => bar; | |
|
zundel
2012/03/30 00:25:01
First of all, I agree something is going wrong in
zundel
2012/03/30 02:53:51
Actually, if you want to write 2 extra (non multi-
floitsch
2012/03/30 05:36:10
Done.
| |
| 11 | |
| 12 void set foo( | |
| 13 String /// 02: static type warning | |
| 14 str) { bar = str.length; } | |
| 15 | |
|
zundel
2012/03/30 00:25:01
FYI, A second test case where getters and setters
| |
| 16 main() { | |
| 17 int x = foo; | |
| 18 Expect.equals(499, x); | |
| 19 foo = "1234"; | |
| 20 int y = foo; | |
| 21 Expect.equals(4, y); | |
| 22 } | |
| OLD | NEW |