Jung Ko

Results 2 issues of Jung Ko

This PR fixes #8422 . Before we get this: ``` class ABCWordT(object): # ABCWordT def Pack(self, builder): return CreateAbcword(builder, self.w) ``` Where the function `CreateAbcword` does not exist. After we...

python
c++
codegen

Here's a simple schema: ``` $ cat test.fbs namespace abc; file_extension "abc"; struct ABCWord { w: [uint32:4]; } table Root { words: [ABCWord]; } root_type Root; ``` I compile it...