Skip to content
This repository was archived by the owner on Jun 20, 2019. It is now read-only.

Fix the type of _convertStatementsBoundAttribute. #563

Merged
merged 1 commit into from
May 2, 2018
Merged
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
3 changes: 2 additions & 1 deletion angular_analyzer_plugin/lib/src/converter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,8 @@ class HtmlTreeConverter {
}

StatementsBoundAttribute _convertStatementsBoundAttribute(
ParsedEventAst ast) {
EventAst eventAst) {
final ast = eventAst as ParsedEventAst;
final prefixToken = ast.prefixToken;
final nameToken = ast.nameToken;
final suffixToken = ast.suffixToken;
Expand Down