| commit | a62280b22c73ed551b62f52cfd348d6a84e53cc9 | [log] [tgz] |
|---|---|---|
| author | foremans <foremans@google.com> | Mon Oct 07 09:50:52 2013 -0700 |
| committer | Sergey Prigogin <eclipse.sprigogin@gmail.com> | Tue Dec 22 19:09:43 2015 -0800 |
| tree | f5a2736fdd90716bea4c5fe910f16d1b7b39fdb4 | |
| parent | 4be84711727039d8a9abeca6f7fb0986b0a3d7c1 [diff] |
Fixed IllegalStateException when using smart-semicolon to add a new
value to an enum with a "Next Id" comment, e.g:
message SomeMessage {
// Next id: 3
enum SomeEnum {
FIRST = 1;
SECOND = 2;
NEW<insert semicolon>
}
}