68c326f455
This enables caching during matching. Closes https://github.com/dart-lang/sdk/issues/50934 Closes https://github.com/dart-lang/sdk/issues/50987 Change-Id: Iae1d8e0989029a193ba77f58338890d9bfa0c09f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/279384 Reviewed-by: Chloe Stefantsova <cstefantsova@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
14 lines
342 B
Dart
14 lines
342 B
Dart
// Copyright (c) 2023, 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 file.
|
|
|
|
method(o) {
|
|
switch (o) {
|
|
case String a:
|
|
print(a);
|
|
break;
|
|
case int a:
|
|
print(a);
|
|
break;
|
|
}
|
|
} |