protobufjs 8.0.2 → 8.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/light/protobuf.js +2 -2
- package/dist/light/protobuf.min.js +2 -2
- package/dist/minimal/protobuf.js +2 -2
- package/dist/minimal/protobuf.min.js +2 -2
- package/dist/protobuf.js +6 -10
- package/dist/protobuf.js.map +1 -1
- package/dist/protobuf.min.js +3 -3
- package/dist/protobuf.min.js.map +1 -1
- package/package.json +1 -1
- package/src/parse.js +4 -8
package/package.json
CHANGED
package/src/parse.js
CHANGED
|
@@ -965,14 +965,10 @@ function parse(source, root, options) {
|
|
|
965
965
|
parsePackage();
|
|
966
966
|
break;
|
|
967
967
|
|
|
968
|
-
case "import":
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
throw illegal(token);
|
|
973
|
-
|
|
974
|
-
parseImport();
|
|
975
|
-
break;
|
|
968
|
+
case "import":
|
|
969
|
+
|
|
970
|
+
parseImport();
|
|
971
|
+
break;
|
|
976
972
|
|
|
977
973
|
case "syntax":
|
|
978
974
|
|