add a package config file to const finder test fixtures (#22124)

Adds a package config file to the const finder test fixtures to unblock the null safety flag removal change.

Otherwise these fixtures get opted in to null safety and some constants are missing (presumably because they are invalid).

Related dart-lang/sdk#43872
This commit is contained in:
Jacob MacDonald 2020-10-26 16:39:08 -07:00 committed by GitHub
parent c896d6d1bb
commit 818e8aa340
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,15 @@
{
"configVersion": 2,
"packages": [
{
"name": "const_finder_fixtures",
"rootUri": "../lib/",
"languageVersion": "2.9"
},
{
"name": "const_finder_fixtures_package",
"rootUri": "../pkg/",
"languageVersion": "2.9"
}
]
}