We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build_runner
build_test
build_web_compilers
test
json_annotation
json_serializable
I have a project (https://github.com/cedx/lcov.dart) whose tests give different results when run by dart2js and the dev compiler: dart-lang/build#1724
dart2js
A FunctionData#toString({bool asDefinition = false}) method is called two times: with asDefinition = true and asDefinition = false (see: https://github.com/cedx/lcov.dart/blob/master/lib/src/function.dart#L33).
FunctionData#toString({bool asDefinition = false})
asDefinition = true
asDefinition = false
When the tests use the dev compiler, it looks like the optional named parameter asDefinition is ignored: its value always seems to be false.
asDefinition
false
The text was updated successfully, but these errors were encountered:
Duplicate of #33876
I believe it is fixed at HEAD but not in a release yet.
Sorry, something went wrong.
No branches or pull requests
build_runner
: 0.10.0,build_test
: 0.10.3,build_web_compilers
: 0.4.1,test
: 1.3.0json_annotation
: 1.0.0,json_serializable
: 1.0.1.I have a project (https://github.com/cedx/lcov.dart) whose tests give different results when run by
dart2js
and the dev compiler:dart-lang/build#1724
A
FunctionData#toString({bool asDefinition = false})
method is called two times: withasDefinition = true
andasDefinition = false
(see: https://github.com/cedx/lcov.dart/blob/master/lib/src/function.dart#L33).When the tests use the dev compiler, it looks like the optional named parameter
asDefinition
is ignored: its value always seems to befalse
.The text was updated successfully, but these errors were encountered: