| commit | 8f127a413e5c515af426bfa8eaa96c300aa98a67 | [log] [tgz] |
|---|---|---|
| author | Alex Ruiz <alruiz@google.com> | Tue Jul 12 11:35:36 2011 +0000 |
| committer | Alex Ruiz <alruiz@google.com> | Tue Jul 12 11:35:36 2011 +0000 |
| tree | 4c20268b15c5cc9d51e359729e9931c580de6aa7 | |
| parent | 635fea921acdf04b22c8c79c425869d35d27ac63 [diff] |
Fixed: [ Issue 85 ] Editor stops parsing if service definition ends with semicolon.
diff --git a/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/Protobuf.xtext b/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/Protobuf.xtext index 62b0d98..f1e61b7 100644 --- a/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/Protobuf.xtext +++ b/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/Protobuf.xtext
@@ -179,7 +179,7 @@ Service: 'service' name=Name '{' rpcs+=Rpc* - '}'; + '}'(';')?; Rpc: 'rpc' name=Name '(' argType=MessageReference ')' 'returns' '(' returnType=MessageReference ')'