Skip to content

Commit

Permalink
Update binaries.
Browse files Browse the repository at this point in the history
Update binaries and proto via update-release-binary.sh
  • Loading branch information
tetromino committed Apr 20, 2021
1 parent 8275ced commit 2cdaa27
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions stardoc/proto/stardoc_output.proto
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,12 @@ message StarlarkFunctionInfo {
// The documented description of the function (if specified in the function's
// docstring).
string doc_string = 3;

// The return value for the function.
FunctionReturnInfo return = 4;

// The deprecation for the function.
FunctionDeprecationInfo deprecated = 5;
}

// Representation of a Starlark function parameter definition.
Expand All @@ -144,6 +150,18 @@ message FunctionParamInfo {
bool mandatory = 4;
}

message FunctionReturnInfo {
// The documented return value of the function (if specified in the function's
// docstring).
string doc_string = 1;
}

message FunctionDeprecationInfo {
// The documented deprecation of the function (if specified in the function's
// docstring).
string doc_string = 1;
}

// Representation of a Starlark provider field definition, comprised of
// the field name and provider description.
message ProviderFieldInfo {
Expand Down
Binary file modified stardoc/renderer_binary.jar
Binary file not shown.
Binary file modified stardoc/stardoc_binary.jar
Binary file not shown.

0 comments on commit 2cdaa27

Please sign in to comment.