mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-20 15:45:05 +00:00
Update JavaScript IDL generator to remove invalid Closure JSDoc comments (#4873)
* Update JavaScript IDL generator to remove invalid Closure JSDoc comments * Revert erroneous changes * A few more tweaks * Updated generated code
This commit is contained in:
committed by
Wouter van Oortmerssen
parent
12e5cf0b29
commit
aaa89429d3
@@ -2,13 +2,14 @@
|
||||
|
||||
package NamespaceB
|
||||
|
||||
type EnumInNestedNS = int8
|
||||
const (
|
||||
EnumInNestedNSA = 0
|
||||
EnumInNestedNSB = 1
|
||||
EnumInNestedNSC = 2
|
||||
EnumInNestedNSA EnumInNestedNS = 0
|
||||
EnumInNestedNSB EnumInNestedNS = 1
|
||||
EnumInNestedNSC EnumInNestedNS = 2
|
||||
)
|
||||
|
||||
var EnumNamesEnumInNestedNS = map[int]string{
|
||||
var EnumNamesEnumInNestedNS = map[EnumInNestedNS]string{
|
||||
EnumInNestedNSA:"A",
|
||||
EnumInNestedNSB:"B",
|
||||
EnumInNestedNSC:"C",
|
||||
|
||||
Reference in New Issue
Block a user