Home | History | Annotate | Download | only in js

Lines Matching full:goog

13 2. Closure-style imports (eg. `goog.require('my.package.MyProto');`)
73 (`myproto_libs.js` in this example). The generated file will `goog.provide()`
75 tests the generated files contain many `goog.provide` statements like:
77 goog.provide('proto.google.protobuf.DescriptorProto');
78 goog.provide('proto.google.protobuf.DescriptorProto.ExtensionRange');
79 goog.provide('proto.google.protobuf.DescriptorProto.ReservedRange');
80 goog.provide('proto.google.protobuf.EnumDescriptorProto');
81 goog.provide('proto.google.protobuf.EnumOptions');
83 The generated code will also `goog.require()` many types in the core library,
85 that your `goog.provide()` / `goog.require()` setup can find all of your
92 goog.require('proto.my.package.MyMessage');