mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-04 12:43:24 +00:00
* Refactor logic that generates import paths in AddImport
* Add new tests to validate relative import path fix
* Generate goldens
* Generate example code
* Format TS generator file
* Revert "Format TS generator file"
This reverts commit 0f0b24aee9.
* Fix merge conflicts
---------
Co-authored-by: Björn Harrtell <bjornharrtell@users.noreply.github.com>
99 lines
2.9 KiB
TypeScript
99 lines
2.9 KiB
TypeScript
// 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 { Color } from './color.js';
|
|
|
|
|
|
export class TestSimpleTableWithEnum implements flatbuffers.IUnpackableObject<TestSimpleTableWithEnumT> {
|
|
bb: flatbuffers.ByteBuffer|null = null;
|
|
bb_pos = 0;
|
|
__init(i:number, bb:flatbuffers.ByteBuffer):TestSimpleTableWithEnum {
|
|
this.bb_pos = i;
|
|
this.bb = bb;
|
|
return this;
|
|
}
|
|
|
|
static getRootAsTestSimpleTableWithEnum(bb:flatbuffers.ByteBuffer, obj?:TestSimpleTableWithEnum):TestSimpleTableWithEnum {
|
|
return (obj || new TestSimpleTableWithEnum()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
}
|
|
|
|
static getSizePrefixedRootAsTestSimpleTableWithEnum(bb:flatbuffers.ByteBuffer, obj?:TestSimpleTableWithEnum):TestSimpleTableWithEnum {
|
|
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
|
|
return (obj || new TestSimpleTableWithEnum()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
}
|
|
|
|
color():Color {
|
|
const offset = this.bb!.__offset(this.bb_pos, 4);
|
|
return offset ? this.bb!.readUint8(this.bb_pos + offset) : Color.Green;
|
|
}
|
|
|
|
mutate_color(value:Color):boolean {
|
|
const offset = this.bb!.__offset(this.bb_pos, 4);
|
|
|
|
if (offset === 0) {
|
|
return false;
|
|
}
|
|
|
|
this.bb!.writeUint8(this.bb_pos + offset, value);
|
|
return true;
|
|
}
|
|
|
|
static getFullyQualifiedName(): "MyGame.Example.TestSimpleTableWithEnum" {
|
|
return 'MyGame.Example.TestSimpleTableWithEnum';
|
|
}
|
|
|
|
static startTestSimpleTableWithEnum(builder:flatbuffers.Builder) {
|
|
builder.startObject(1);
|
|
}
|
|
|
|
static addColor(builder:flatbuffers.Builder, color:Color) {
|
|
builder.addFieldInt8(0, color, Color.Green);
|
|
}
|
|
|
|
static endTestSimpleTableWithEnum(builder:flatbuffers.Builder):flatbuffers.Offset {
|
|
const offset = builder.endObject();
|
|
return offset;
|
|
}
|
|
|
|
static createTestSimpleTableWithEnum(builder:flatbuffers.Builder, color:Color):flatbuffers.Offset {
|
|
TestSimpleTableWithEnum.startTestSimpleTableWithEnum(builder);
|
|
TestSimpleTableWithEnum.addColor(builder, color);
|
|
return TestSimpleTableWithEnum.endTestSimpleTableWithEnum(builder);
|
|
}
|
|
|
|
serialize():Uint8Array {
|
|
return this.bb!.bytes();
|
|
}
|
|
|
|
static deserialize(buffer: Uint8Array):TestSimpleTableWithEnum {
|
|
return TestSimpleTableWithEnum.getRootAsTestSimpleTableWithEnum(new flatbuffers.ByteBuffer(buffer))
|
|
}
|
|
|
|
unpack(): TestSimpleTableWithEnumT {
|
|
return new TestSimpleTableWithEnumT(
|
|
this.color()
|
|
);
|
|
}
|
|
|
|
|
|
unpackTo(_o: TestSimpleTableWithEnumT): void {
|
|
_o.color = this.color();
|
|
}
|
|
}
|
|
|
|
export class TestSimpleTableWithEnumT implements flatbuffers.IGeneratedObject {
|
|
constructor(
|
|
public color: Color = Color.Green
|
|
){}
|
|
|
|
|
|
pack(builder:flatbuffers.Builder): flatbuffers.Offset {
|
|
return TestSimpleTableWithEnum.createTestSimpleTableWithEnum(builder,
|
|
this.color
|
|
);
|
|
}
|
|
}
|