-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:dart-lang/webdev into dds_port
- Loading branch information
Showing
17 changed files
with
186 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
dwds/test/instances/instance_inspection_ddc_library_bundle_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Copyright (c) 2024, 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. | ||
|
||
@Tags(['daily']) | ||
@TestOn('vm') | ||
@Timeout(Duration(minutes: 2)) | ||
library; | ||
|
||
import 'package:dwds/expression_compiler.dart'; | ||
import 'package:test/test.dart'; | ||
import 'package:test_common/test_sdk_configuration.dart'; | ||
|
||
import '../fixtures/context.dart'; | ||
import 'common/instance_inspection_common.dart'; | ||
|
||
void main() { | ||
// Enable verbose logging for debugging. | ||
final debug = false; | ||
final canaryFeatures = true; | ||
final compilationMode = CompilationMode.frontendServer; | ||
|
||
group('canary: $canaryFeatures |', () { | ||
final provider = TestSdkConfigurationProvider( | ||
verbose: debug, | ||
canaryFeatures: canaryFeatures, | ||
ddcModuleFormat: ModuleFormat.ddc, | ||
); | ||
tearDownAll(provider.dispose); | ||
runTests( | ||
provider: provider, | ||
compilationMode: compilationMode, | ||
canaryFeatures: canaryFeatures, | ||
debug: debug, | ||
); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
dwds/test/instances/record_inspection_ddc_library_bundle_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Copyright (c) 2024, 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. | ||
|
||
@Tags(['daily']) | ||
@TestOn('vm') | ||
@Timeout(Duration(minutes: 2)) | ||
library; | ||
|
||
import 'package:dwds/src/services/expression_compiler.dart'; | ||
import 'package:test/test.dart'; | ||
import 'package:test_common/test_sdk_configuration.dart'; | ||
|
||
import '../fixtures/context.dart'; | ||
import 'common/record_inspection_common.dart'; | ||
|
||
void main() { | ||
// Enable verbose logging for debugging. | ||
final debug = false; | ||
final canaryFeatures = true; | ||
final compilationMode = CompilationMode.frontendServer; | ||
|
||
group('canary: $canaryFeatures |', () { | ||
final provider = TestSdkConfigurationProvider( | ||
verbose: debug, | ||
canaryFeatures: canaryFeatures, | ||
ddcModuleFormat: ModuleFormat.ddc, | ||
); | ||
tearDownAll(provider.dispose); | ||
runTests( | ||
provider: provider, | ||
compilationMode: compilationMode, | ||
canaryFeatures: canaryFeatures, | ||
debug: debug, | ||
); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
## 3.7.1-wip | ||
|
||
## 3.7.0 | ||
|
||
- Update `dwds` constraint to `24.2.0`. | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters