diff options
author | Derek Bailey <derekbailey@google.com> | 2022-02-02 23:44:43 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 23:44:43 -0800 |
commit | 39c8a19ce27194f7f27de578dfaee7a09f353541 (patch) | |
tree | ecd1a3ef3d9eec24a808997c644c071fc17a9a9e /dart | |
parent | 826193ff68f72af87d800b1ff0dca0e29dcb9e34 (diff) | |
download | flatbuffers-39c8a19ce27194f7f27de578dfaee7a09f353541.tar.gz flatbuffers-39c8a19ce27194f7f27de578dfaee7a09f353541.tar.bz2 flatbuffers-39c8a19ce27194f7f27de578dfaee7a09f353541.zip |
fixed comparator for native_inline (#7076)
* fixed comparator for native_inline
* added native_inline data
* updated more tests for the new field
* more fixes
Diffstat (limited to 'dart')
-rw-r--r-- | dart/test/flat_buffers_test.dart | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/dart/test/flat_buffers_test.dart b/dart/test/flat_buffers_test.dart index 24c5b161..ed37f875 100644 --- a/dart/test/flat_buffers_test.dart +++ b/dart/test/flat_buffers_test.dart @@ -84,7 +84,8 @@ class CheckOtherLangaugesData { 'nonOwningReference: 0, vectorOfNonOwningReferences: null, ' 'anyUniqueType: null, anyUnique: null, anyAmbiguousType: null, ' 'anyAmbiguous: null, vectorOfEnums: null, signedEnum: Race{value: -1}, ' - 'testrequirednestedflatbuffer: null, scalarKeySortedTables: null}, ' + 'testrequirednestedflatbuffer: null, scalarKeySortedTables: null, ' + 'nativeInline: null}, ' 'test4: [Test{a: 10, b: 20}, Test{a: 30, b: 40}], ' 'testarrayofstring: [test1, test2], testarrayoftables: null, ' 'enemy: Monster{pos: null, mana: 150, hp: 100, name: Fred, ' @@ -104,7 +105,8 @@ class CheckOtherLangaugesData { 'nonOwningReference: 0, vectorOfNonOwningReferences: null, ' 'anyUniqueType: null, anyUnique: null, anyAmbiguousType: null, ' 'anyAmbiguous: null, vectorOfEnums: null, signedEnum: Race{value: -1}, ' - 'testrequirednestedflatbuffer: null, scalarKeySortedTables: null}, ' + 'testrequirednestedflatbuffer: null, scalarKeySortedTables: null, ' + 'nativeInline: null}, ' 'testnestedflatbuffer: null, testempty: null, testbool: true, ' 'testhashs32Fnv1: -579221183, testhashu32Fnv1: 3715746113, ' 'testhashs64Fnv1: 7930699090847568257, ' @@ -128,7 +130,8 @@ class CheckOtherLangaugesData { 'anyAmbiguousType: null, ' 'anyAmbiguous: null, vectorOfEnums: null, signedEnum: Race{value: -1}, ' 'testrequirednestedflatbuffer: null, scalarKeySortedTables: [Stat{id: ' - 'miss, val: 0, count: 0}, Stat{id: hit, val: 10, count: 1}]}', + 'miss, val: 0, count: 0}, Stat{id: hit, val: 10, count: 1}], ' + 'nativeInline: Test{a: 1, b: 2}}', ); } } |