Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

test(parser_spec): fix analyzer warnings #1430

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/core/parser/parser_spec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ toBool(x) => (x is num) ? x != 0 : x == true;
main() {
describe('parse', () {
Map<String, dynamic> context;
Parser<Expression> parser;
Parser parser;
FormatterMap formatters;

beforeEachModule((Module module) {
Expand Down Expand Up @@ -157,7 +157,7 @@ main() {
});

describe('error handling', () {
Parser<Expression> parser;
Parser parser;

beforeEach((Parser p) {
parser = p;
Expand Down