Files
sdk/pkg/front_end/testcases/incremental/crash_01.yaml
T
Kilian Schulte 9e8fdef17c Add annotation-based creation location tracking
Closes https://github.com/dart-lang/sdk/pull/63011

GitOrigin-RevId: 926534c2f5d3cd1e9629cf25f6b028ab34c00e64
Change-Id: I88460a060faabeae8f611e88f23b2eb5fc99f21a
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/491702
Reviewed-by: Daco Harkes <dacoharkes@google.com>
Reviewed-by: Jens Johansen <jensj@google.com>
Reviewed-by: Slava Egorov <vegorov@google.com>
Commit-Queue: Daco Harkes <dacoharkes@google.com>
2026-04-28 03:06:03 -07:00

34 lines
1.1 KiB
YAML

# Copyright (c) 2020, 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.
# Reproduce a crash.
type: newworld
trackCreationLocations: true
target: dartdevc # basically needed for widget creation to be run
worlds:
- entry: app/main.dart
sources:
.dart_tool/package_config.json: |
{
"configVersion": 2,
"packages": [
{
"name": "flutter",
"rootUri": "../flutter",
"languageVersion": "2.12"
}
]
}
app/main.dart: |
import "package:flutter/src/cupertino/interface_level.dart";
flutter/src/widgets/framework.dart: |
abstract class Widget {}
abstract class ProxyWidget extends Widget {}
abstract class InheritedWidget extends ProxyWidget {}
flutter/src/cupertino/interface_level.dart: |
import '../widgets/framework.dart';
class CupertinoUserInterfaceLevel extends InheritedWidget {}
expectedLibraryCount: 3