Simulator first commit
This commit is contained in:
46
node_modules/protobufjs/tests/proto2js/Bar.json
generated
vendored
Normal file
46
node_modules/protobufjs/tests/proto2js/Bar.json
generated
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
"package": null,
|
||||
"messages": [
|
||||
{
|
||||
"ref": "Foo",
|
||||
"fields": [
|
||||
{
|
||||
"rule": "required",
|
||||
"type": "string",
|
||||
"name": "buzz",
|
||||
"id": 2,
|
||||
"options": {}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"enums": [],
|
||||
"imports": [
|
||||
{
|
||||
"package": null,
|
||||
"messages": [
|
||||
{
|
||||
"name": "Foo",
|
||||
"fields": [
|
||||
{
|
||||
"rule": "required",
|
||||
"type": "string",
|
||||
"name": "fizz",
|
||||
"id": 1,
|
||||
"options": {}
|
||||
}
|
||||
],
|
||||
"enums": [],
|
||||
"messages": [],
|
||||
"options": {}
|
||||
}
|
||||
],
|
||||
"enums": [],
|
||||
"imports": [],
|
||||
"options": {},
|
||||
"services": []
|
||||
}
|
||||
],
|
||||
"options": {},
|
||||
"services": []
|
||||
}
|
7
node_modules/protobufjs/tests/proto2js/Bar.proto
generated
vendored
Normal file
7
node_modules/protobufjs/tests/proto2js/Bar.proto
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
// Bar.proto
|
||||
import "Foo.proto";
|
||||
|
||||
// really extend Bar but that produces an empty constructor.
|
||||
extend Foo {
|
||||
required string buzz = 2;
|
||||
}
|
4
node_modules/protobufjs/tests/proto2js/Foo.proto
generated
vendored
Normal file
4
node_modules/protobufjs/tests/proto2js/Foo.proto
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
// Foo.proto
|
||||
message Foo {
|
||||
required string fizz = 1;
|
||||
}
|
Reference in New Issue
Block a user