Skip to content

Commit 6678d3a

Browse files
rafi-kamalcopybara-github
authored andcommitted
Project import generated by Copybara
PiperOrigin-RevId: 300117791
1 parent f2b0e50 commit 6678d3a

12 files changed

Lines changed: 15 additions & 15 deletions

experimental/benchmarks/code_size/kernel/all_types.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ goog.module('protobuf.benchmark.KernelCodeSizeBenchmarkAllTypes');
66

77
const ByteString = goog.require('protobuf.ByteString');
88
const Int64 = goog.require('protobuf.Int64');
9-
const LazyAccessor = goog.require('protobuf.binary.LazyAccessor');
9+
const LazyAccessor = goog.require('protobuf.runtime.Kernel');
1010
const TestMessage = goog.require('protobuf.testing.binary.TestMessage');
1111
const {ensureCommonBaseLine} = goog.require('protobuf.benchmark.codeSize.codeSizeBase');
1212

experimental/benchmarks/code_size/kernel/popular_types.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
goog.module('protobuf.benchmark.KernelCodeSizeBenchmarkPopularTypes');
2121

2222
const Int64 = goog.require('protobuf.Int64');
23-
const LazyAccessor = goog.require('protobuf.binary.LazyAccessor');
23+
const LazyAccessor = goog.require('protobuf.runtime.Kernel');
2424
const TestMessage = goog.require('protobuf.testing.binary.TestMessage');
2525
const {ensureCommonBaseLine} = goog.require('protobuf.benchmark.codeSize.codeSizeBase');
2626

experimental/runtime/kernel/conformance/conformance_request.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44
goog.module('proto.conformance.ConformanceRequest');
55

6-
const LazyAccessor = goog.require('protobuf.binary.LazyAccessor');
6+
const LazyAccessor = goog.require('protobuf.runtime.Kernel');
77
const WireFormat = goog.require('proto.conformance.WireFormat');
88

99
/**

experimental/runtime/kernel/conformance/conformance_response.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
goog.module('proto.conformance.ConformanceResponse');
55

66
const ByteString = goog.require('protobuf.ByteString');
7-
const LazyAccessor = goog.require('protobuf.binary.LazyAccessor');
7+
const LazyAccessor = goog.require('protobuf.runtime.Kernel');
88

99
/**
1010
* Handwritten code of conformance.ConformanceResponse.

experimental/runtime/kernel/conformance/test_all_types_proto2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
goog.module('proto.conformance.TestAllTypesProto2');
55

66
const InternalMessage = goog.require('protobuf.binary.InternalMessage');
7-
const LazyAccessor = goog.require('protobuf.binary.LazyAccessor');
7+
const LazyAccessor = goog.require('protobuf.runtime.Kernel');
88

99
/**
1010
* Handwritten code of conformance.TestAllTypesProto2.

experimental/runtime/kernel/conformance/test_all_types_proto3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
goog.module('proto.conformance.TestAllTypesProto3');
55

66
const InternalMessage = goog.require('protobuf.binary.InternalMessage');
7-
const LazyAccessor = goog.require('protobuf.binary.LazyAccessor');
7+
const LazyAccessor = goog.require('protobuf.runtime.Kernel');
88

99
/**
1010
* Handwritten code of conformance.TestAllTypesProto3.

experimental/runtime/kernel/internal_message.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55
goog.module('protobuf.binary.InternalMessage');
66

7-
const LazyAccessor = goog.requireType('protobuf.binary.LazyAccessor');
7+
const LazyAccessor = goog.requireType('protobuf.runtime.Kernel');
88

99
/**
1010
* Interface that needs to be implemented by messages implemented with the

experimental/runtime/kernel/lazy_accessor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* fields), LazyAccessor will only need the full type information of used
1313
* fields.
1414
*/
15-
goog.module('protobuf.binary.LazyAccessor');
15+
goog.module('protobuf.runtime.Kernel');
1616

1717
const BufferDecoder = goog.require('protobuf.binary.BufferDecoder');
1818
const ByteString = goog.require('protobuf.ByteString');

experimental/runtime/kernel/lazy_accessor_compatibility_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
* by binary_json_conformance_suite. Ultimately all of the tests in this file
1111
* should be moved to binary_json_conformance_suite.
1212
*/
13-
goog.module('protobuf.binary.LazyAccessorCompatibilityTest');
13+
goog.module('protobuf.runtime.KernelCompatibilityTest');
1414

1515
goog.setTestOnly();
1616

1717
const ByteString = goog.require('protobuf.ByteString');
1818
const Int64 = goog.require('protobuf.Int64');
19-
const LazyAccessor = goog.require('protobuf.binary.LazyAccessor');
19+
const LazyAccessor = goog.require('protobuf.runtime.Kernel');
2020
const TestMessage = goog.require('protobuf.testing.binary.TestMessage');
2121
const {CHECK_CRITICAL_STATE} = goog.require('protobuf.internal.checks');
2222

experimental/runtime/kernel/lazy_accessor_repeated_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/**
22
* @fileoverview Tests for repeated methods in lazy_accessor.js.
33
*/
4-
goog.module('protobuf.binary.LazyAccessorTest');
4+
goog.module('protobuf.runtime.KernelTest');
55

66
goog.setTestOnly();
77

88
const ByteString = goog.require('protobuf.ByteString');
99
const Int64 = goog.require('protobuf.Int64');
1010
const InternalMessage = goog.require('protobuf.binary.InternalMessage');
11-
const LazyAccessor = goog.require('protobuf.binary.LazyAccessor');
11+
const LazyAccessor = goog.require('protobuf.runtime.Kernel');
1212
const TestMessage = goog.require('protobuf.testing.binary.TestMessage');
1313
// Note to the reader:
1414
// Since the lazy accessor behavior changes with the checking level some of the

0 commit comments

Comments
 (0)