Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(750)

Unified Diff: service/datastore/reflect.go

Issue 1279703003: Get rid of awkward proto argument to Interface.Run (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: rename test helper Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « service/datastore/raw_interface.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: service/datastore/reflect.go
diff --git a/service/datastore/reflect.go b/service/datastore/reflect.go
index a2d30c70f8aded02b8c2a24035d0b08ef22a1fed..16fc67e02ebc5348249a463e9d7e252fb0fbf814 100644
--- a/service/datastore/reflect.go
+++ b/service/datastore/reflect.go
@@ -12,8 +12,10 @@ import (
)
var (
+ typeOfBool = reflect.TypeOf(true)
typeOfBSKey = reflect.TypeOf(blobstore.Key(""))
typeOfByteString = reflect.TypeOf(ByteString(nil))
+ typeOfCursorCB = reflect.TypeOf(CursorCB(nil))
typeOfGeoPoint = reflect.TypeOf(GeoPoint{})
typeOfInt64 = reflect.TypeOf(int64(0))
typeOfKey = reflect.TypeOf((*Key)(nil)).Elem()
« no previous file with comments | « service/datastore/raw_interface.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698