Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
5049f747
Commit
5049f747
authored
Jan 15, 2021
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
go/neo/proto: protogen: Load zodb.Tid and zodb.Oid types
Not used yet, but they will be needed for msgpack codec.
parent
ebac0628
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
go/neo/proto/protogen.go
go/neo/proto/protogen.go
+8
-0
No files found.
go/neo/proto/protogen.go
View file @
5049f747
...
...
@@ -116,6 +116,10 @@ func typeName(typ types.Type) string {
return
types
.
TypeString
(
typ
,
qf
)
}
// zodb.Tid and zodb.Oid types
var
zodbTid
types
.
Type
var
zodbOid
types
.
Type
var
neo_customCodec
*
types
.
Interface
// type of neo.customCodec
var
memBuf
types
.
Type
// type of mem.Buf
...
...
@@ -279,6 +283,10 @@ func main() {
}
memBuf
=
__
.
Type
()
// extract zodb.Tid and zodb.Oid
zodbTid
=
xlookup
(
zodbPkg
,
"Tid"
)
.
Type
()
zodbOid
=
xlookup
(
zodbPkg
,
"Oid"
)
.
Type
()
// prologue
f
:=
fileMap
[
"proto.go"
]
buf
:=
Buffer
{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment