Skip to content

Commit

Permalink
fix spacing in error message
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=168050011
  • Loading branch information
tbreisacher authored and lauraharker committed Sep 12, 2017
1 parent bae9294 commit 8a5b6cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/google/javascript/jscomp/NodeUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -4584,7 +4584,7 @@ static boolean evaluatesToLocalValue(Node value, Predicate<Node> locals) {
}

throw new IllegalStateException(
"Unexpected expression node" + value + "\n parent:" + value.getParent());
"Unexpected expression node: " + value + "\n parent:" + value.getParent());
}
}

Expand Down

0 comments on commit 8a5b6cc

Please sign in to comment.