Simulator first commit

This commit is contained in:
2019-09-18 11:11:16 +03:00
commit 6e1686be67
5028 changed files with 985331 additions and 0 deletions

46
node_modules/protobufjs/tests/proto2js/Bar.json generated vendored Normal file
View 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
View 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
View File

@ -0,0 +1,4 @@
// Foo.proto
message Foo {
required string fizz = 1;
}