Skip to content
Snippets Groups Projects
Commit a3794781 authored by Kevin Moore's avatar Kevin Moore
Browse files

silence analyzer about downcast

R=nweiz@google.com

Review URL: https://codereview.chromium.org//1059883002
parent 7f54ecc4
No related branches found
Tags 0.12.0-beta.6
No related merge requests found
......@@ -239,7 +239,8 @@ Matcher _isRune(String char) {
/// Parses [dart], which should be a string literal, into a
/// [StringLiteralIterator].
StringLiteralIterator _parse(String dart) {
var literal = parseCompilationUnit("final str = $dart;")
.declarations.single.variables.variables.single.initializer;
var declaration =
parseCompilationUnit("final str = $dart;").declarations.single;
var literal = declaration.variables.variables.single.initializer;
return new StringLiteralIterator(literal);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment