mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
Rename flatbuffer base.msg to base.inner
This better disambiguates with the msg_generated.ts module, which in JS we call "fbs", but would be better called "msg".
This commit is contained in:
parent
51dc46eff4
commit
f774953011
21 changed files with 204 additions and 204 deletions
|
@ -37,6 +37,6 @@ function req(
|
|||
fbs.Truncate.startTruncate(builder);
|
||||
fbs.Truncate.addName(builder, name_);
|
||||
fbs.Truncate.addLen(builder, len);
|
||||
const msg = fbs.Truncate.endTruncate(builder);
|
||||
return [builder, fbs.Any.Truncate, msg];
|
||||
const inner = fbs.Truncate.endTruncate(builder);
|
||||
return [builder, fbs.Any.Truncate, inner];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue