Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
582927ae
Commit
582927ae
authored
May 21, 2019
by
Hao Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update generated files
parent
88339fa7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
0 deletions
+20
-0
testprotos.pb
csharp/src/Google.Protobuf.Test/testprotos.pb
+0
-0
Descriptor.cs
csharp/src/Google.Protobuf/Reflection/Descriptor.cs
+6
-0
ExtensionRange.php
...ogle/Protobuf/Internal/DescriptorProto/ExtensionRange.php
+14
-0
No files found.
csharp/src/Google.Protobuf.Test/testprotos.pb
View file @
582927ae
No preview for this file type
csharp/src/Google.Protobuf/Reflection/Descriptor.cs
View file @
582927ae
...
...
@@ -1194,6 +1194,9 @@ namespace Google.Protobuf.Reflection {
private
readonly
static
int
StartDefaultValue
=
0
;
private
int
start_
;
/// <summary>
/// Inclusive.
/// </summary>
[
global
::
System
.
Diagnostics
.
DebuggerNonUserCodeAttribute
]
public
int
Start
{
get
{
if
((
_hasBits0
&
1
)
!=
0
)
{
return
start_
;
}
else
{
return
StartDefaultValue
;
}
}
...
...
@@ -1218,6 +1221,9 @@ namespace Google.Protobuf.Reflection {
private
readonly
static
int
EndDefaultValue
=
0
;
private
int
end_
;
/// <summary>
/// Exclusive.
/// </summary>
[
global
::
System
.
Diagnostics
.
DebuggerNonUserCodeAttribute
]
public
int
End
{
get
{
if
((
_hasBits0
&
2
)
!=
0
)
{
return
end_
;
}
else
{
return
EndDefaultValue
;
}
}
...
...
php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php
View file @
582927ae
...
...
@@ -16,11 +16,15 @@ use Google\Protobuf\Internal\GPBUtil;
class
ExtensionRange
extends
\Google\Protobuf\Internal\Message
{
/**
* Inclusive.
*
* Generated from protobuf field <code>optional int32 start = 1;</code>
*/
private
$start
=
0
;
private
$has_start
=
false
;
/**
* Exclusive.
*
* Generated from protobuf field <code>optional int32 end = 2;</code>
*/
private
$end
=
0
;
...
...
@@ -38,7 +42,9 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object.
*
* @type int $start
* Inclusive.
* @type int $end
* Exclusive.
* @type \Google\Protobuf\Internal\ExtensionRangeOptions $options
* }
*/
...
...
@@ -48,6 +54,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message
}
/**
* Inclusive.
*
* Generated from protobuf field <code>optional int32 start = 1;</code>
* @return int
*/
...
...
@@ -57,6 +65,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message
}
/**
* Inclusive.
*
* Generated from protobuf field <code>optional int32 start = 1;</code>
* @param int $var
* @return $this
...
...
@@ -76,6 +86,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message
}
/**
* Exclusive.
*
* Generated from protobuf field <code>optional int32 end = 2;</code>
* @return int
*/
...
...
@@ -85,6 +97,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message
}
/**
* Exclusive.
*
* Generated from protobuf field <code>optional int32 end = 2;</code>
* @param int $var
* @return $this
...
...
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