Files
sdk/pkg/front_end/testcases/general/nested_lib_spec/libraries.json
T
Johnni Winther 4e283a7e08 [_fe_analyzer_shared] Support 'include' tag in libraries specification
This adds support for an 'include' tag in libraries specifications
that enable composite declarations. With this, we can avoid relying on
copied portions of (other) specifications.

Closes https://github.com/dart-lang/sdk/issues/47998

Change-Id: I694d5c006741e6625feb7cdd5898946cc6caee50
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/224952
Reviewed-by: Sigmund Cherem <sigmund@google.com>
2022-01-05 08:13:23 +00:00

29 lines
414 B
JSON

{
"none": {
"include": [
{
"path": "extra_libraries.json",
"target": "_none"
},
{
"target": "common"
}
],
"libraries": {
"test": {
"patches": [
"patch_lib.dart"
],
"uri": "origin_lib.dart"
}
}
},
"common": {
"libraries": {
"common": {
"uri": "common_lib.dart"
}
}
}
}