| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, 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 | |
| 5 // WARNING: Do not edit - generated code. | |
| 6 | |
| 7 interface ValidityState { | |
| 8 | |
| 9 bool get customError(); | |
| 10 | |
| 11 bool get patternMismatch(); | |
| 12 | |
| 13 bool get rangeOverflow(); | |
| 14 | |
| 15 bool get rangeUnderflow(); | |
| 16 | |
| 17 bool get stepMismatch(); | |
| 18 | |
| 19 bool get tooLong(); | |
| 20 | |
| 21 bool get typeMismatch(); | |
| 22 | |
| 23 bool get valid(); | |
| 24 | |
| 25 bool get valueMissing(); | |
| 26 } | |
| OLD | NEW |