Add --ts-undefined-for-optionals command line option (#8861)

* Add --ts-undefined-for-optionals command line option

# Details

- Fixes #7656
- Added a new `--ts-undefined-for-optionals` command line option for `flatc`.
- If enabled, generated TypeScript code uses `undefined` for optional fields rather than `null`.

* Also add TS generated test files

* Run `sh scripts/clang-format-git.sh`

* also add tests/ts/lalala-options.ts to the repo

* move new tests to tests/ts/optional_values dir

* add tests/ts/optional_values/optional_values_generated.cjs to the repo

* reuse existing optional_scalars.fbs and add new test

* add comma

* sh scripts/clang-format-git.sh

* remove comma

* sh scripts/clang-format-git.sh

* trying things

* sh scripts/clang-format-git.sh

* done

* address feedback

* sh scripts/clang-format-git.sh

* run `sh scripts/clang-format-git.sh`

* remove uneeded `eslint-disable @typescript-eslint/no-namespace` line

---------

Co-authored-by: José Luis Millán <jmillan@aliax.net>
This commit is contained in:
Iñaki Baz Castillo
2026-02-04 13:37:41 +01:00
committed by GitHub
parent 95ff1f1d80
commit 3211f857d1
13 changed files with 1307 additions and 56 deletions

View File

@@ -0,0 +1,60 @@
import assert from 'assert'
import * as flatbuffers from 'flatbuffers'
import optional_scalars from './ts-undefined-for-optionals/optional_scalars_generated.cjs'
const { ScalarStuff, ScalarStuffT } = optional_scalars.optional_scalars;
function testScalarStuffBuf(scalarStuff) {
assert.strictEqual(scalarStuff.justI8(), -1);
assert.strictEqual(scalarStuff.maybeI8(), undefined);
assert.strictEqual(scalarStuff.defaultI8(), 42);
assert.strictEqual(scalarStuff.justU8(), 1);
assert.strictEqual(scalarStuff.maybeU8(), undefined);
assert.strictEqual(scalarStuff.defaultU8(), 42);
}
function testScalarStuffUnpack(scalarStuff) {
assert.strictEqual(scalarStuff.justI8, -1);
assert.strictEqual(scalarStuff.maybeI8, undefined);
assert.strictEqual(scalarStuff.defaultI8, 42);
assert.strictEqual(scalarStuff.justU8, 1);
assert.strictEqual(scalarStuff.maybeU8, undefined);
assert.strictEqual(scalarStuff.defaultU8, 42);
}
function createScalarStuff(fbb) {
ScalarStuff.startScalarStuff(fbb);
ScalarStuff.addJustI8(fbb, -1);
ScalarStuff.addJustU8(fbb, 1);
var offset = ScalarStuff.endScalarStuff(fbb);
ScalarStuff.finishScalarStuffBuffer(fbb, offset);
}
function main() {
var fbb = new flatbuffers.Builder();
createScalarStuff(fbb);
var buf = new flatbuffers.ByteBuffer(fbb.asUint8Array());
var scalarStuff = ScalarStuff.getRootAsScalarStuff(buf);
testScalarStuffBuf(scalarStuff);
testScalarStuffUnpack(scalarStuff.unpack());
var scalarStuff_to = new ScalarStuffT();
scalarStuff.unpackTo(scalarStuff_to);
testScalarStuffUnpack(scalarStuff_to);
fbb.clear();
ScalarStuff.finishScalarStuffBuffer(fbb, scalarStuff_to.pack(fbb));
var unpackBuf = new flatbuffers.ByteBuffer(fbb.asUint8Array());
testScalarStuffBuf(ScalarStuff.getRootAsScalarStuff(unpackBuf));
console.log('FlatBuffers --ts-undefined-for-optionals test: completed successfully');
}
main();

View File

@@ -99,6 +99,20 @@ flatc(
schema="../non_zero_enum.fbs",
)
flatc(
options=[
"--ts",
"--gen-object-api",
"--ts-undefined-for-optionals",
],
schema="../optional_scalars.fbs",
prefix="ts-undefined-for-optionals",
)
esbuild(
"ts-undefined-for-optionals/optional_scalars.ts",
"ts-undefined-for-optionals/optional_scalars_generated.cjs",
)
flatc(
options=[
"--ts",
@@ -201,6 +215,7 @@ check_call(NODE_CMD + ["JavaScriptUnionVectorTest"])
check_call(NODE_CMD + ["JavaScriptFlexBuffersTest"])
check_call(NODE_CMD + ["JavaScriptComplexArraysTest"])
check_call(NODE_CMD + ["JavaScriptUnionUnderlyingTypeTest"])
check_call(NODE_CMD + ["JavaScriptUndefinedForOptionals"])
print("Running old v1 TypeScript Tests...")
check_call(NODE_CMD + ["JavaScriptTestv1.cjs", "./monster_test_generated.cjs"])

View File

@@ -0,0 +1,6 @@
// automatically generated by the FlatBuffers compiler, do not modify
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
export { OptionalByte } from './optional-scalars/optional-byte.js';
export { ScalarStuff, ScalarStuffT } from './optional-scalars/scalar-stuff.js';

View File

@@ -0,0 +1,9 @@
// automatically generated by the FlatBuffers compiler, do not modify
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
export enum OptionalByte {
None = 0,
One = 1,
Two = 2
}

View File

@@ -0,0 +1,589 @@
// automatically generated by the FlatBuffers compiler, do not modify
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
import * as flatbuffers from 'flatbuffers';
import { OptionalByte } from '../optional-scalars/optional-byte.js';
export class ScalarStuff implements flatbuffers.IUnpackableObject<ScalarStuffT> {
bb: flatbuffers.ByteBuffer|undefined = undefined;
bb_pos = 0;
__init(i:number, bb:flatbuffers.ByteBuffer):ScalarStuff {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsScalarStuff(bb:flatbuffers.ByteBuffer, obj?:ScalarStuff):ScalarStuff {
return (obj || new ScalarStuff()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsScalarStuff(bb:flatbuffers.ByteBuffer, obj?:ScalarStuff):ScalarStuff {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new ScalarStuff()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static bufferHasIdentifier(bb:flatbuffers.ByteBuffer):boolean {
return bb.__has_identifier('NULL');
}
justI8():number {
const offset = this.bb!.__offset(this.bb_pos, 4);
return offset ? this.bb!.readInt8(this.bb_pos + offset) : 0;
}
maybeI8():number|undefined {
const offset = this.bb!.__offset(this.bb_pos, 6);
return offset ? this.bb!.readInt8(this.bb_pos + offset) : undefined;
}
defaultI8():number {
const offset = this.bb!.__offset(this.bb_pos, 8);
return offset ? this.bb!.readInt8(this.bb_pos + offset) : 42;
}
justU8():number {
const offset = this.bb!.__offset(this.bb_pos, 10);
return offset ? this.bb!.readUint8(this.bb_pos + offset) : 0;
}
maybeU8():number|undefined {
const offset = this.bb!.__offset(this.bb_pos, 12);
return offset ? this.bb!.readUint8(this.bb_pos + offset) : undefined;
}
defaultU8():number {
const offset = this.bb!.__offset(this.bb_pos, 14);
return offset ? this.bb!.readUint8(this.bb_pos + offset) : 42;
}
justI16():number {
const offset = this.bb!.__offset(this.bb_pos, 16);
return offset ? this.bb!.readInt16(this.bb_pos + offset) : 0;
}
maybeI16():number|undefined {
const offset = this.bb!.__offset(this.bb_pos, 18);
return offset ? this.bb!.readInt16(this.bb_pos + offset) : undefined;
}
defaultI16():number {
const offset = this.bb!.__offset(this.bb_pos, 20);
return offset ? this.bb!.readInt16(this.bb_pos + offset) : 42;
}
justU16():number {
const offset = this.bb!.__offset(this.bb_pos, 22);
return offset ? this.bb!.readUint16(this.bb_pos + offset) : 0;
}
maybeU16():number|undefined {
const offset = this.bb!.__offset(this.bb_pos, 24);
return offset ? this.bb!.readUint16(this.bb_pos + offset) : undefined;
}
defaultU16():number {
const offset = this.bb!.__offset(this.bb_pos, 26);
return offset ? this.bb!.readUint16(this.bb_pos + offset) : 42;
}
justI32():number {
const offset = this.bb!.__offset(this.bb_pos, 28);
return offset ? this.bb!.readInt32(this.bb_pos + offset) : 0;
}
maybeI32():number|undefined {
const offset = this.bb!.__offset(this.bb_pos, 30);
return offset ? this.bb!.readInt32(this.bb_pos + offset) : undefined;
}
defaultI32():number {
const offset = this.bb!.__offset(this.bb_pos, 32);
return offset ? this.bb!.readInt32(this.bb_pos + offset) : 42;
}
justU32():number {
const offset = this.bb!.__offset(this.bb_pos, 34);
return offset ? this.bb!.readUint32(this.bb_pos + offset) : 0;
}
maybeU32():number|undefined {
const offset = this.bb!.__offset(this.bb_pos, 36);
return offset ? this.bb!.readUint32(this.bb_pos + offset) : undefined;
}
defaultU32():number {
const offset = this.bb!.__offset(this.bb_pos, 38);
return offset ? this.bb!.readUint32(this.bb_pos + offset) : 42;
}
justI64():bigint {
const offset = this.bb!.__offset(this.bb_pos, 40);
return offset ? this.bb!.readInt64(this.bb_pos + offset) : BigInt('0');
}
maybeI64():bigint|undefined {
const offset = this.bb!.__offset(this.bb_pos, 42);
return offset ? this.bb!.readInt64(this.bb_pos + offset) : undefined;
}
defaultI64():bigint {
const offset = this.bb!.__offset(this.bb_pos, 44);
return offset ? this.bb!.readInt64(this.bb_pos + offset) : BigInt('42');
}
justU64():bigint {
const offset = this.bb!.__offset(this.bb_pos, 46);
return offset ? this.bb!.readUint64(this.bb_pos + offset) : BigInt('0');
}
maybeU64():bigint|undefined {
const offset = this.bb!.__offset(this.bb_pos, 48);
return offset ? this.bb!.readUint64(this.bb_pos + offset) : undefined;
}
defaultU64():bigint {
const offset = this.bb!.__offset(this.bb_pos, 50);
return offset ? this.bb!.readUint64(this.bb_pos + offset) : BigInt('42');
}
justF32():number {
const offset = this.bb!.__offset(this.bb_pos, 52);
return offset ? this.bb!.readFloat32(this.bb_pos + offset) : 0.0;
}
maybeF32():number|undefined {
const offset = this.bb!.__offset(this.bb_pos, 54);
return offset ? this.bb!.readFloat32(this.bb_pos + offset) : undefined;
}
defaultF32():number {
const offset = this.bb!.__offset(this.bb_pos, 56);
return offset ? this.bb!.readFloat32(this.bb_pos + offset) : 42.0;
}
justF64():number {
const offset = this.bb!.__offset(this.bb_pos, 58);
return offset ? this.bb!.readFloat64(this.bb_pos + offset) : 0.0;
}
maybeF64():number|undefined {
const offset = this.bb!.__offset(this.bb_pos, 60);
return offset ? this.bb!.readFloat64(this.bb_pos + offset) : undefined;
}
defaultF64():number {
const offset = this.bb!.__offset(this.bb_pos, 62);
return offset ? this.bb!.readFloat64(this.bb_pos + offset) : 42.0;
}
justBool():boolean {
const offset = this.bb!.__offset(this.bb_pos, 64);
return offset ? !!this.bb!.readInt8(this.bb_pos + offset) : false;
}
maybeBool():boolean|undefined {
const offset = this.bb!.__offset(this.bb_pos, 66);
return offset ? !!this.bb!.readInt8(this.bb_pos + offset) : undefined;
}
defaultBool():boolean {
const offset = this.bb!.__offset(this.bb_pos, 68);
return offset ? !!this.bb!.readInt8(this.bb_pos + offset) : true;
}
justEnum():OptionalByte {
const offset = this.bb!.__offset(this.bb_pos, 70);
return offset ? this.bb!.readInt8(this.bb_pos + offset) : OptionalByte.None;
}
maybeEnum():OptionalByte|undefined {
const offset = this.bb!.__offset(this.bb_pos, 72);
return offset ? this.bb!.readInt8(this.bb_pos + offset) : undefined;
}
defaultEnum():OptionalByte {
const offset = this.bb!.__offset(this.bb_pos, 74);
return offset ? this.bb!.readInt8(this.bb_pos + offset) : OptionalByte.One;
}
static startScalarStuff(builder:flatbuffers.Builder) {
builder.startObject(36);
}
static addJustI8(builder:flatbuffers.Builder, justI8:number) {
builder.addFieldInt8(0, justI8, 0);
}
static addMaybeI8(builder:flatbuffers.Builder, maybeI8:number) {
builder.addFieldInt8(1, maybeI8, undefined);
}
static addDefaultI8(builder:flatbuffers.Builder, defaultI8:number) {
builder.addFieldInt8(2, defaultI8, 42);
}
static addJustU8(builder:flatbuffers.Builder, justU8:number) {
builder.addFieldInt8(3, justU8, 0);
}
static addMaybeU8(builder:flatbuffers.Builder, maybeU8:number) {
builder.addFieldInt8(4, maybeU8, undefined);
}
static addDefaultU8(builder:flatbuffers.Builder, defaultU8:number) {
builder.addFieldInt8(5, defaultU8, 42);
}
static addJustI16(builder:flatbuffers.Builder, justI16:number) {
builder.addFieldInt16(6, justI16, 0);
}
static addMaybeI16(builder:flatbuffers.Builder, maybeI16:number) {
builder.addFieldInt16(7, maybeI16, undefined);
}
static addDefaultI16(builder:flatbuffers.Builder, defaultI16:number) {
builder.addFieldInt16(8, defaultI16, 42);
}
static addJustU16(builder:flatbuffers.Builder, justU16:number) {
builder.addFieldInt16(9, justU16, 0);
}
static addMaybeU16(builder:flatbuffers.Builder, maybeU16:number) {
builder.addFieldInt16(10, maybeU16, undefined);
}
static addDefaultU16(builder:flatbuffers.Builder, defaultU16:number) {
builder.addFieldInt16(11, defaultU16, 42);
}
static addJustI32(builder:flatbuffers.Builder, justI32:number) {
builder.addFieldInt32(12, justI32, 0);
}
static addMaybeI32(builder:flatbuffers.Builder, maybeI32:number) {
builder.addFieldInt32(13, maybeI32, undefined);
}
static addDefaultI32(builder:flatbuffers.Builder, defaultI32:number) {
builder.addFieldInt32(14, defaultI32, 42);
}
static addJustU32(builder:flatbuffers.Builder, justU32:number) {
builder.addFieldInt32(15, justU32, 0);
}
static addMaybeU32(builder:flatbuffers.Builder, maybeU32:number) {
builder.addFieldInt32(16, maybeU32, undefined);
}
static addDefaultU32(builder:flatbuffers.Builder, defaultU32:number) {
builder.addFieldInt32(17, defaultU32, 42);
}
static addJustI64(builder:flatbuffers.Builder, justI64:bigint) {
builder.addFieldInt64(18, justI64, BigInt('0'));
}
static addMaybeI64(builder:flatbuffers.Builder, maybeI64:bigint) {
builder.addFieldInt64(19, maybeI64, undefined);
}
static addDefaultI64(builder:flatbuffers.Builder, defaultI64:bigint) {
builder.addFieldInt64(20, defaultI64, BigInt('42'));
}
static addJustU64(builder:flatbuffers.Builder, justU64:bigint) {
builder.addFieldInt64(21, justU64, BigInt('0'));
}
static addMaybeU64(builder:flatbuffers.Builder, maybeU64:bigint) {
builder.addFieldInt64(22, maybeU64, undefined);
}
static addDefaultU64(builder:flatbuffers.Builder, defaultU64:bigint) {
builder.addFieldInt64(23, defaultU64, BigInt('42'));
}
static addJustF32(builder:flatbuffers.Builder, justF32:number) {
builder.addFieldFloat32(24, justF32, 0.0);
}
static addMaybeF32(builder:flatbuffers.Builder, maybeF32:number) {
builder.addFieldFloat32(25, maybeF32, undefined);
}
static addDefaultF32(builder:flatbuffers.Builder, defaultF32:number) {
builder.addFieldFloat32(26, defaultF32, 42.0);
}
static addJustF64(builder:flatbuffers.Builder, justF64:number) {
builder.addFieldFloat64(27, justF64, 0.0);
}
static addMaybeF64(builder:flatbuffers.Builder, maybeF64:number) {
builder.addFieldFloat64(28, maybeF64, undefined);
}
static addDefaultF64(builder:flatbuffers.Builder, defaultF64:number) {
builder.addFieldFloat64(29, defaultF64, 42.0);
}
static addJustBool(builder:flatbuffers.Builder, justBool:boolean) {
builder.addFieldInt8(30, +justBool, +false);
}
static addMaybeBool(builder:flatbuffers.Builder, maybeBool:boolean) {
builder.addFieldInt8(31, +maybeBool, undefined);
}
static addDefaultBool(builder:flatbuffers.Builder, defaultBool:boolean) {
builder.addFieldInt8(32, +defaultBool, +true);
}
static addJustEnum(builder:flatbuffers.Builder, justEnum:OptionalByte) {
builder.addFieldInt8(33, justEnum, OptionalByte.None);
}
static addMaybeEnum(builder:flatbuffers.Builder, maybeEnum:OptionalByte) {
builder.addFieldInt8(34, maybeEnum, undefined);
}
static addDefaultEnum(builder:flatbuffers.Builder, defaultEnum:OptionalByte) {
builder.addFieldInt8(35, defaultEnum, OptionalByte.One);
}
static endScalarStuff(builder:flatbuffers.Builder):flatbuffers.Offset {
const offset = builder.endObject();
return offset;
}
static finishScalarStuffBuffer(builder:flatbuffers.Builder, offset:flatbuffers.Offset) {
builder.finish(offset, 'NULL');
}
static finishSizePrefixedScalarStuffBuffer(builder:flatbuffers.Builder, offset:flatbuffers.Offset) {
builder.finish(offset, 'NULL', true);
}
static createScalarStuff(builder:flatbuffers.Builder, justI8:number, maybeI8:number|undefined, defaultI8:number, justU8:number, maybeU8:number|undefined, defaultU8:number, justI16:number, maybeI16:number|undefined, defaultI16:number, justU16:number, maybeU16:number|undefined, defaultU16:number, justI32:number, maybeI32:number|undefined, defaultI32:number, justU32:number, maybeU32:number|undefined, defaultU32:number, justI64:bigint, maybeI64:bigint|undefined, defaultI64:bigint, justU64:bigint, maybeU64:bigint|undefined, defaultU64:bigint, justF32:number, maybeF32:number|undefined, defaultF32:number, justF64:number, maybeF64:number|undefined, defaultF64:number, justBool:boolean, maybeBool:boolean|undefined, defaultBool:boolean, justEnum:OptionalByte, maybeEnum:OptionalByte|undefined, defaultEnum:OptionalByte):flatbuffers.Offset {
ScalarStuff.startScalarStuff(builder);
ScalarStuff.addJustI8(builder, justI8);
if (maybeI8 !== undefined)
ScalarStuff.addMaybeI8(builder, maybeI8);
ScalarStuff.addDefaultI8(builder, defaultI8);
ScalarStuff.addJustU8(builder, justU8);
if (maybeU8 !== undefined)
ScalarStuff.addMaybeU8(builder, maybeU8);
ScalarStuff.addDefaultU8(builder, defaultU8);
ScalarStuff.addJustI16(builder, justI16);
if (maybeI16 !== undefined)
ScalarStuff.addMaybeI16(builder, maybeI16);
ScalarStuff.addDefaultI16(builder, defaultI16);
ScalarStuff.addJustU16(builder, justU16);
if (maybeU16 !== undefined)
ScalarStuff.addMaybeU16(builder, maybeU16);
ScalarStuff.addDefaultU16(builder, defaultU16);
ScalarStuff.addJustI32(builder, justI32);
if (maybeI32 !== undefined)
ScalarStuff.addMaybeI32(builder, maybeI32);
ScalarStuff.addDefaultI32(builder, defaultI32);
ScalarStuff.addJustU32(builder, justU32);
if (maybeU32 !== undefined)
ScalarStuff.addMaybeU32(builder, maybeU32);
ScalarStuff.addDefaultU32(builder, defaultU32);
ScalarStuff.addJustI64(builder, justI64);
if (maybeI64 !== undefined)
ScalarStuff.addMaybeI64(builder, maybeI64);
ScalarStuff.addDefaultI64(builder, defaultI64);
ScalarStuff.addJustU64(builder, justU64);
if (maybeU64 !== undefined)
ScalarStuff.addMaybeU64(builder, maybeU64);
ScalarStuff.addDefaultU64(builder, defaultU64);
ScalarStuff.addJustF32(builder, justF32);
if (maybeF32 !== undefined)
ScalarStuff.addMaybeF32(builder, maybeF32);
ScalarStuff.addDefaultF32(builder, defaultF32);
ScalarStuff.addJustF64(builder, justF64);
if (maybeF64 !== undefined)
ScalarStuff.addMaybeF64(builder, maybeF64);
ScalarStuff.addDefaultF64(builder, defaultF64);
ScalarStuff.addJustBool(builder, justBool);
if (maybeBool !== undefined)
ScalarStuff.addMaybeBool(builder, maybeBool);
ScalarStuff.addDefaultBool(builder, defaultBool);
ScalarStuff.addJustEnum(builder, justEnum);
if (maybeEnum !== undefined)
ScalarStuff.addMaybeEnum(builder, maybeEnum);
ScalarStuff.addDefaultEnum(builder, defaultEnum);
return ScalarStuff.endScalarStuff(builder);
}
unpack(): ScalarStuffT {
return new ScalarStuffT(
this.justI8(),
this.maybeI8(),
this.defaultI8(),
this.justU8(),
this.maybeU8(),
this.defaultU8(),
this.justI16(),
this.maybeI16(),
this.defaultI16(),
this.justU16(),
this.maybeU16(),
this.defaultU16(),
this.justI32(),
this.maybeI32(),
this.defaultI32(),
this.justU32(),
this.maybeU32(),
this.defaultU32(),
this.justI64(),
this.maybeI64(),
this.defaultI64(),
this.justU64(),
this.maybeU64(),
this.defaultU64(),
this.justF32(),
this.maybeF32(),
this.defaultF32(),
this.justF64(),
this.maybeF64(),
this.defaultF64(),
this.justBool(),
this.maybeBool(),
this.defaultBool(),
this.justEnum(),
this.maybeEnum(),
this.defaultEnum()
);
}
unpackTo(_o: ScalarStuffT): void {
_o.justI8 = this.justI8();
_o.maybeI8 = this.maybeI8();
_o.defaultI8 = this.defaultI8();
_o.justU8 = this.justU8();
_o.maybeU8 = this.maybeU8();
_o.defaultU8 = this.defaultU8();
_o.justI16 = this.justI16();
_o.maybeI16 = this.maybeI16();
_o.defaultI16 = this.defaultI16();
_o.justU16 = this.justU16();
_o.maybeU16 = this.maybeU16();
_o.defaultU16 = this.defaultU16();
_o.justI32 = this.justI32();
_o.maybeI32 = this.maybeI32();
_o.defaultI32 = this.defaultI32();
_o.justU32 = this.justU32();
_o.maybeU32 = this.maybeU32();
_o.defaultU32 = this.defaultU32();
_o.justI64 = this.justI64();
_o.maybeI64 = this.maybeI64();
_o.defaultI64 = this.defaultI64();
_o.justU64 = this.justU64();
_o.maybeU64 = this.maybeU64();
_o.defaultU64 = this.defaultU64();
_o.justF32 = this.justF32();
_o.maybeF32 = this.maybeF32();
_o.defaultF32 = this.defaultF32();
_o.justF64 = this.justF64();
_o.maybeF64 = this.maybeF64();
_o.defaultF64 = this.defaultF64();
_o.justBool = this.justBool();
_o.maybeBool = this.maybeBool();
_o.defaultBool = this.defaultBool();
_o.justEnum = this.justEnum();
_o.maybeEnum = this.maybeEnum();
_o.defaultEnum = this.defaultEnum();
}
}
export class ScalarStuffT implements flatbuffers.IGeneratedObject {
constructor(
public justI8: number = 0,
public maybeI8: number|undefined = undefined,
public defaultI8: number = 42,
public justU8: number = 0,
public maybeU8: number|undefined = undefined,
public defaultU8: number = 42,
public justI16: number = 0,
public maybeI16: number|undefined = undefined,
public defaultI16: number = 42,
public justU16: number = 0,
public maybeU16: number|undefined = undefined,
public defaultU16: number = 42,
public justI32: number = 0,
public maybeI32: number|undefined = undefined,
public defaultI32: number = 42,
public justU32: number = 0,
public maybeU32: number|undefined = undefined,
public defaultU32: number = 42,
public justI64: bigint = BigInt('0'),
public maybeI64: bigint|undefined = undefined,
public defaultI64: bigint = BigInt('42'),
public justU64: bigint = BigInt('0'),
public maybeU64: bigint|undefined = undefined,
public defaultU64: bigint = BigInt('42'),
public justF32: number = 0.0,
public maybeF32: number|undefined = undefined,
public defaultF32: number = 42.0,
public justF64: number = 0.0,
public maybeF64: number|undefined = undefined,
public defaultF64: number = 42.0,
public justBool: boolean = false,
public maybeBool: boolean|undefined = undefined,
public defaultBool: boolean = true,
public justEnum: OptionalByte = OptionalByte.None,
public maybeEnum: OptionalByte|undefined = undefined,
public defaultEnum: OptionalByte = OptionalByte.One
){}
pack(builder:flatbuffers.Builder): flatbuffers.Offset {
return ScalarStuff.createScalarStuff(builder,
this.justI8,
this.maybeI8,
this.defaultI8,
this.justU8,
this.maybeU8,
this.defaultU8,
this.justI16,
this.maybeI16,
this.defaultI16,
this.justU16,
this.maybeU16,
this.defaultU16,
this.justI32,
this.maybeI32,
this.defaultI32,
this.justU32,
this.maybeU32,
this.defaultU32,
this.justI64,
this.maybeI64,
this.defaultI64,
this.justU64,
this.maybeU64,
this.defaultU64,
this.justF32,
this.maybeF32,
this.defaultF32,
this.justF64,
this.maybeF64,
this.defaultF64,
this.justBool,
this.maybeBool,
this.defaultBool,
this.justEnum,
this.maybeEnum,
this.defaultEnum
);
}
}

View File

@@ -0,0 +1,5 @@
// automatically generated by the FlatBuffers compiler, do not modify
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
export * as optional_scalars from './optional-scalars.js';

View File

@@ -0,0 +1,551 @@
"use strict";
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// ts-undefined-for-optionals/optional_scalars.ts
var optional_scalars_exports2 = {};
__export(optional_scalars_exports2, {
optional_scalars: () => optional_scalars_exports
});
module.exports = __toCommonJS(optional_scalars_exports2);
// ts-undefined-for-optionals/optional-scalars.ts
var optional_scalars_exports = {};
__export(optional_scalars_exports, {
OptionalByte: () => OptionalByte,
ScalarStuff: () => ScalarStuff,
ScalarStuffT: () => ScalarStuffT
});
// ts-undefined-for-optionals/optional-scalars/optional-byte.ts
var OptionalByte = /* @__PURE__ */ ((OptionalByte2) => {
OptionalByte2[OptionalByte2["None"] = 0] = "None";
OptionalByte2[OptionalByte2["One"] = 1] = "One";
OptionalByte2[OptionalByte2["Two"] = 2] = "Two";
return OptionalByte2;
})(OptionalByte || {});
// ts-undefined-for-optionals/optional-scalars/scalar-stuff.ts
var flatbuffers = __toESM(require("flatbuffers"), 1);
var ScalarStuff = class _ScalarStuff {
constructor() {
this.bb = void 0;
this.bb_pos = 0;
}
__init(i, bb) {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsScalarStuff(bb, obj) {
return (obj || new _ScalarStuff()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsScalarStuff(bb, obj) {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new _ScalarStuff()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static bufferHasIdentifier(bb) {
return bb.__has_identifier("NULL");
}
justI8() {
const offset = this.bb.__offset(this.bb_pos, 4);
return offset ? this.bb.readInt8(this.bb_pos + offset) : 0;
}
maybeI8() {
const offset = this.bb.__offset(this.bb_pos, 6);
return offset ? this.bb.readInt8(this.bb_pos + offset) : void 0;
}
defaultI8() {
const offset = this.bb.__offset(this.bb_pos, 8);
return offset ? this.bb.readInt8(this.bb_pos + offset) : 42;
}
justU8() {
const offset = this.bb.__offset(this.bb_pos, 10);
return offset ? this.bb.readUint8(this.bb_pos + offset) : 0;
}
maybeU8() {
const offset = this.bb.__offset(this.bb_pos, 12);
return offset ? this.bb.readUint8(this.bb_pos + offset) : void 0;
}
defaultU8() {
const offset = this.bb.__offset(this.bb_pos, 14);
return offset ? this.bb.readUint8(this.bb_pos + offset) : 42;
}
justI16() {
const offset = this.bb.__offset(this.bb_pos, 16);
return offset ? this.bb.readInt16(this.bb_pos + offset) : 0;
}
maybeI16() {
const offset = this.bb.__offset(this.bb_pos, 18);
return offset ? this.bb.readInt16(this.bb_pos + offset) : void 0;
}
defaultI16() {
const offset = this.bb.__offset(this.bb_pos, 20);
return offset ? this.bb.readInt16(this.bb_pos + offset) : 42;
}
justU16() {
const offset = this.bb.__offset(this.bb_pos, 22);
return offset ? this.bb.readUint16(this.bb_pos + offset) : 0;
}
maybeU16() {
const offset = this.bb.__offset(this.bb_pos, 24);
return offset ? this.bb.readUint16(this.bb_pos + offset) : void 0;
}
defaultU16() {
const offset = this.bb.__offset(this.bb_pos, 26);
return offset ? this.bb.readUint16(this.bb_pos + offset) : 42;
}
justI32() {
const offset = this.bb.__offset(this.bb_pos, 28);
return offset ? this.bb.readInt32(this.bb_pos + offset) : 0;
}
maybeI32() {
const offset = this.bb.__offset(this.bb_pos, 30);
return offset ? this.bb.readInt32(this.bb_pos + offset) : void 0;
}
defaultI32() {
const offset = this.bb.__offset(this.bb_pos, 32);
return offset ? this.bb.readInt32(this.bb_pos + offset) : 42;
}
justU32() {
const offset = this.bb.__offset(this.bb_pos, 34);
return offset ? this.bb.readUint32(this.bb_pos + offset) : 0;
}
maybeU32() {
const offset = this.bb.__offset(this.bb_pos, 36);
return offset ? this.bb.readUint32(this.bb_pos + offset) : void 0;
}
defaultU32() {
const offset = this.bb.__offset(this.bb_pos, 38);
return offset ? this.bb.readUint32(this.bb_pos + offset) : 42;
}
justI64() {
const offset = this.bb.__offset(this.bb_pos, 40);
return offset ? this.bb.readInt64(this.bb_pos + offset) : BigInt("0");
}
maybeI64() {
const offset = this.bb.__offset(this.bb_pos, 42);
return offset ? this.bb.readInt64(this.bb_pos + offset) : void 0;
}
defaultI64() {
const offset = this.bb.__offset(this.bb_pos, 44);
return offset ? this.bb.readInt64(this.bb_pos + offset) : BigInt("42");
}
justU64() {
const offset = this.bb.__offset(this.bb_pos, 46);
return offset ? this.bb.readUint64(this.bb_pos + offset) : BigInt("0");
}
maybeU64() {
const offset = this.bb.__offset(this.bb_pos, 48);
return offset ? this.bb.readUint64(this.bb_pos + offset) : void 0;
}
defaultU64() {
const offset = this.bb.__offset(this.bb_pos, 50);
return offset ? this.bb.readUint64(this.bb_pos + offset) : BigInt("42");
}
justF32() {
const offset = this.bb.__offset(this.bb_pos, 52);
return offset ? this.bb.readFloat32(this.bb_pos + offset) : 0;
}
maybeF32() {
const offset = this.bb.__offset(this.bb_pos, 54);
return offset ? this.bb.readFloat32(this.bb_pos + offset) : void 0;
}
defaultF32() {
const offset = this.bb.__offset(this.bb_pos, 56);
return offset ? this.bb.readFloat32(this.bb_pos + offset) : 42;
}
justF64() {
const offset = this.bb.__offset(this.bb_pos, 58);
return offset ? this.bb.readFloat64(this.bb_pos + offset) : 0;
}
maybeF64() {
const offset = this.bb.__offset(this.bb_pos, 60);
return offset ? this.bb.readFloat64(this.bb_pos + offset) : void 0;
}
defaultF64() {
const offset = this.bb.__offset(this.bb_pos, 62);
return offset ? this.bb.readFloat64(this.bb_pos + offset) : 42;
}
justBool() {
const offset = this.bb.__offset(this.bb_pos, 64);
return offset ? !!this.bb.readInt8(this.bb_pos + offset) : false;
}
maybeBool() {
const offset = this.bb.__offset(this.bb_pos, 66);
return offset ? !!this.bb.readInt8(this.bb_pos + offset) : void 0;
}
defaultBool() {
const offset = this.bb.__offset(this.bb_pos, 68);
return offset ? !!this.bb.readInt8(this.bb_pos + offset) : true;
}
justEnum() {
const offset = this.bb.__offset(this.bb_pos, 70);
return offset ? this.bb.readInt8(this.bb_pos + offset) : 0 /* None */;
}
maybeEnum() {
const offset = this.bb.__offset(this.bb_pos, 72);
return offset ? this.bb.readInt8(this.bb_pos + offset) : void 0;
}
defaultEnum() {
const offset = this.bb.__offset(this.bb_pos, 74);
return offset ? this.bb.readInt8(this.bb_pos + offset) : 1 /* One */;
}
static startScalarStuff(builder) {
builder.startObject(36);
}
static addJustI8(builder, justI8) {
builder.addFieldInt8(0, justI8, 0);
}
static addMaybeI8(builder, maybeI8) {
builder.addFieldInt8(1, maybeI8, void 0);
}
static addDefaultI8(builder, defaultI8) {
builder.addFieldInt8(2, defaultI8, 42);
}
static addJustU8(builder, justU8) {
builder.addFieldInt8(3, justU8, 0);
}
static addMaybeU8(builder, maybeU8) {
builder.addFieldInt8(4, maybeU8, void 0);
}
static addDefaultU8(builder, defaultU8) {
builder.addFieldInt8(5, defaultU8, 42);
}
static addJustI16(builder, justI16) {
builder.addFieldInt16(6, justI16, 0);
}
static addMaybeI16(builder, maybeI16) {
builder.addFieldInt16(7, maybeI16, void 0);
}
static addDefaultI16(builder, defaultI16) {
builder.addFieldInt16(8, defaultI16, 42);
}
static addJustU16(builder, justU16) {
builder.addFieldInt16(9, justU16, 0);
}
static addMaybeU16(builder, maybeU16) {
builder.addFieldInt16(10, maybeU16, void 0);
}
static addDefaultU16(builder, defaultU16) {
builder.addFieldInt16(11, defaultU16, 42);
}
static addJustI32(builder, justI32) {
builder.addFieldInt32(12, justI32, 0);
}
static addMaybeI32(builder, maybeI32) {
builder.addFieldInt32(13, maybeI32, void 0);
}
static addDefaultI32(builder, defaultI32) {
builder.addFieldInt32(14, defaultI32, 42);
}
static addJustU32(builder, justU32) {
builder.addFieldInt32(15, justU32, 0);
}
static addMaybeU32(builder, maybeU32) {
builder.addFieldInt32(16, maybeU32, void 0);
}
static addDefaultU32(builder, defaultU32) {
builder.addFieldInt32(17, defaultU32, 42);
}
static addJustI64(builder, justI64) {
builder.addFieldInt64(18, justI64, BigInt("0"));
}
static addMaybeI64(builder, maybeI64) {
builder.addFieldInt64(19, maybeI64, void 0);
}
static addDefaultI64(builder, defaultI64) {
builder.addFieldInt64(20, defaultI64, BigInt("42"));
}
static addJustU64(builder, justU64) {
builder.addFieldInt64(21, justU64, BigInt("0"));
}
static addMaybeU64(builder, maybeU64) {
builder.addFieldInt64(22, maybeU64, void 0);
}
static addDefaultU64(builder, defaultU64) {
builder.addFieldInt64(23, defaultU64, BigInt("42"));
}
static addJustF32(builder, justF32) {
builder.addFieldFloat32(24, justF32, 0);
}
static addMaybeF32(builder, maybeF32) {
builder.addFieldFloat32(25, maybeF32, void 0);
}
static addDefaultF32(builder, defaultF32) {
builder.addFieldFloat32(26, defaultF32, 42);
}
static addJustF64(builder, justF64) {
builder.addFieldFloat64(27, justF64, 0);
}
static addMaybeF64(builder, maybeF64) {
builder.addFieldFloat64(28, maybeF64, void 0);
}
static addDefaultF64(builder, defaultF64) {
builder.addFieldFloat64(29, defaultF64, 42);
}
static addJustBool(builder, justBool) {
builder.addFieldInt8(30, +justBool, 0);
}
static addMaybeBool(builder, maybeBool) {
builder.addFieldInt8(31, +maybeBool, void 0);
}
static addDefaultBool(builder, defaultBool) {
builder.addFieldInt8(32, +defaultBool, 1);
}
static addJustEnum(builder, justEnum) {
builder.addFieldInt8(33, justEnum, 0 /* None */);
}
static addMaybeEnum(builder, maybeEnum) {
builder.addFieldInt8(34, maybeEnum, void 0);
}
static addDefaultEnum(builder, defaultEnum) {
builder.addFieldInt8(35, defaultEnum, 1 /* One */);
}
static endScalarStuff(builder) {
const offset = builder.endObject();
return offset;
}
static finishScalarStuffBuffer(builder, offset) {
builder.finish(offset, "NULL");
}
static finishSizePrefixedScalarStuffBuffer(builder, offset) {
builder.finish(offset, "NULL", true);
}
static createScalarStuff(builder, justI8, maybeI8, defaultI8, justU8, maybeU8, defaultU8, justI16, maybeI16, defaultI16, justU16, maybeU16, defaultU16, justI32, maybeI32, defaultI32, justU32, maybeU32, defaultU32, justI64, maybeI64, defaultI64, justU64, maybeU64, defaultU64, justF32, maybeF32, defaultF32, justF64, maybeF64, defaultF64, justBool, maybeBool, defaultBool, justEnum, maybeEnum, defaultEnum) {
_ScalarStuff.startScalarStuff(builder);
_ScalarStuff.addJustI8(builder, justI8);
if (maybeI8 !== void 0)
_ScalarStuff.addMaybeI8(builder, maybeI8);
_ScalarStuff.addDefaultI8(builder, defaultI8);
_ScalarStuff.addJustU8(builder, justU8);
if (maybeU8 !== void 0)
_ScalarStuff.addMaybeU8(builder, maybeU8);
_ScalarStuff.addDefaultU8(builder, defaultU8);
_ScalarStuff.addJustI16(builder, justI16);
if (maybeI16 !== void 0)
_ScalarStuff.addMaybeI16(builder, maybeI16);
_ScalarStuff.addDefaultI16(builder, defaultI16);
_ScalarStuff.addJustU16(builder, justU16);
if (maybeU16 !== void 0)
_ScalarStuff.addMaybeU16(builder, maybeU16);
_ScalarStuff.addDefaultU16(builder, defaultU16);
_ScalarStuff.addJustI32(builder, justI32);
if (maybeI32 !== void 0)
_ScalarStuff.addMaybeI32(builder, maybeI32);
_ScalarStuff.addDefaultI32(builder, defaultI32);
_ScalarStuff.addJustU32(builder, justU32);
if (maybeU32 !== void 0)
_ScalarStuff.addMaybeU32(builder, maybeU32);
_ScalarStuff.addDefaultU32(builder, defaultU32);
_ScalarStuff.addJustI64(builder, justI64);
if (maybeI64 !== void 0)
_ScalarStuff.addMaybeI64(builder, maybeI64);
_ScalarStuff.addDefaultI64(builder, defaultI64);
_ScalarStuff.addJustU64(builder, justU64);
if (maybeU64 !== void 0)
_ScalarStuff.addMaybeU64(builder, maybeU64);
_ScalarStuff.addDefaultU64(builder, defaultU64);
_ScalarStuff.addJustF32(builder, justF32);
if (maybeF32 !== void 0)
_ScalarStuff.addMaybeF32(builder, maybeF32);
_ScalarStuff.addDefaultF32(builder, defaultF32);
_ScalarStuff.addJustF64(builder, justF64);
if (maybeF64 !== void 0)
_ScalarStuff.addMaybeF64(builder, maybeF64);
_ScalarStuff.addDefaultF64(builder, defaultF64);
_ScalarStuff.addJustBool(builder, justBool);
if (maybeBool !== void 0)
_ScalarStuff.addMaybeBool(builder, maybeBool);
_ScalarStuff.addDefaultBool(builder, defaultBool);
_ScalarStuff.addJustEnum(builder, justEnum);
if (maybeEnum !== void 0)
_ScalarStuff.addMaybeEnum(builder, maybeEnum);
_ScalarStuff.addDefaultEnum(builder, defaultEnum);
return _ScalarStuff.endScalarStuff(builder);
}
unpack() {
return new ScalarStuffT(
this.justI8(),
this.maybeI8(),
this.defaultI8(),
this.justU8(),
this.maybeU8(),
this.defaultU8(),
this.justI16(),
this.maybeI16(),
this.defaultI16(),
this.justU16(),
this.maybeU16(),
this.defaultU16(),
this.justI32(),
this.maybeI32(),
this.defaultI32(),
this.justU32(),
this.maybeU32(),
this.defaultU32(),
this.justI64(),
this.maybeI64(),
this.defaultI64(),
this.justU64(),
this.maybeU64(),
this.defaultU64(),
this.justF32(),
this.maybeF32(),
this.defaultF32(),
this.justF64(),
this.maybeF64(),
this.defaultF64(),
this.justBool(),
this.maybeBool(),
this.defaultBool(),
this.justEnum(),
this.maybeEnum(),
this.defaultEnum()
);
}
unpackTo(_o) {
_o.justI8 = this.justI8();
_o.maybeI8 = this.maybeI8();
_o.defaultI8 = this.defaultI8();
_o.justU8 = this.justU8();
_o.maybeU8 = this.maybeU8();
_o.defaultU8 = this.defaultU8();
_o.justI16 = this.justI16();
_o.maybeI16 = this.maybeI16();
_o.defaultI16 = this.defaultI16();
_o.justU16 = this.justU16();
_o.maybeU16 = this.maybeU16();
_o.defaultU16 = this.defaultU16();
_o.justI32 = this.justI32();
_o.maybeI32 = this.maybeI32();
_o.defaultI32 = this.defaultI32();
_o.justU32 = this.justU32();
_o.maybeU32 = this.maybeU32();
_o.defaultU32 = this.defaultU32();
_o.justI64 = this.justI64();
_o.maybeI64 = this.maybeI64();
_o.defaultI64 = this.defaultI64();
_o.justU64 = this.justU64();
_o.maybeU64 = this.maybeU64();
_o.defaultU64 = this.defaultU64();
_o.justF32 = this.justF32();
_o.maybeF32 = this.maybeF32();
_o.defaultF32 = this.defaultF32();
_o.justF64 = this.justF64();
_o.maybeF64 = this.maybeF64();
_o.defaultF64 = this.defaultF64();
_o.justBool = this.justBool();
_o.maybeBool = this.maybeBool();
_o.defaultBool = this.defaultBool();
_o.justEnum = this.justEnum();
_o.maybeEnum = this.maybeEnum();
_o.defaultEnum = this.defaultEnum();
}
};
var ScalarStuffT = class {
constructor(justI8 = 0, maybeI8 = void 0, defaultI8 = 42, justU8 = 0, maybeU8 = void 0, defaultU8 = 42, justI16 = 0, maybeI16 = void 0, defaultI16 = 42, justU16 = 0, maybeU16 = void 0, defaultU16 = 42, justI32 = 0, maybeI32 = void 0, defaultI32 = 42, justU32 = 0, maybeU32 = void 0, defaultU32 = 42, justI64 = BigInt("0"), maybeI64 = void 0, defaultI64 = BigInt("42"), justU64 = BigInt("0"), maybeU64 = void 0, defaultU64 = BigInt("42"), justF32 = 0, maybeF32 = void 0, defaultF32 = 42, justF64 = 0, maybeF64 = void 0, defaultF64 = 42, justBool = false, maybeBool = void 0, defaultBool = true, justEnum = 0 /* None */, maybeEnum = void 0, defaultEnum = 1 /* One */) {
this.justI8 = justI8;
this.maybeI8 = maybeI8;
this.defaultI8 = defaultI8;
this.justU8 = justU8;
this.maybeU8 = maybeU8;
this.defaultU8 = defaultU8;
this.justI16 = justI16;
this.maybeI16 = maybeI16;
this.defaultI16 = defaultI16;
this.justU16 = justU16;
this.maybeU16 = maybeU16;
this.defaultU16 = defaultU16;
this.justI32 = justI32;
this.maybeI32 = maybeI32;
this.defaultI32 = defaultI32;
this.justU32 = justU32;
this.maybeU32 = maybeU32;
this.defaultU32 = defaultU32;
this.justI64 = justI64;
this.maybeI64 = maybeI64;
this.defaultI64 = defaultI64;
this.justU64 = justU64;
this.maybeU64 = maybeU64;
this.defaultU64 = defaultU64;
this.justF32 = justF32;
this.maybeF32 = maybeF32;
this.defaultF32 = defaultF32;
this.justF64 = justF64;
this.maybeF64 = maybeF64;
this.defaultF64 = defaultF64;
this.justBool = justBool;
this.maybeBool = maybeBool;
this.defaultBool = defaultBool;
this.justEnum = justEnum;
this.maybeEnum = maybeEnum;
this.defaultEnum = defaultEnum;
}
pack(builder) {
return ScalarStuff.createScalarStuff(
builder,
this.justI8,
this.maybeI8,
this.defaultI8,
this.justU8,
this.maybeU8,
this.defaultU8,
this.justI16,
this.maybeI16,
this.defaultI16,
this.justU16,
this.maybeU16,
this.defaultU16,
this.justI32,
this.maybeI32,
this.defaultI32,
this.justU32,
this.maybeU32,
this.defaultU32,
this.justI64,
this.maybeI64,
this.defaultI64,
this.justU64,
this.maybeU64,
this.defaultU64,
this.justF32,
this.maybeF32,
this.defaultF32,
this.justF64,
this.maybeF64,
this.defaultF64,
this.justBool,
this.maybeBool,
this.defaultBool,
this.justEnum,
this.maybeEnum,
this.defaultEnum
);
}
};