aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib
diff options
context:
space:
mode:
authorGravatar Laurent Le Brun <laurentlb@google.com>2016-01-07 15:00:31 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-01-07 20:20:01 +0000
commit05ff7e7f9299d3f780e78045759cd3a4798db2c5 (patch)
tree6cd064e2dce0ec53612a248a88146ed4484e047e /src/main/java/com/google/devtools/build/lib
parent4f85f871399ecedd776bf85ada7d179320942366 (diff)
Add list.append and list.extend to the documentation
-- MOS_MIGRATED_REVID=111600744
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib')
-rw-r--r--src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java b/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java
index b6405f6ade..08455bdc84 100644
--- a/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java
+++ b/src/main/java/com/google/devtools/build/lib/syntax/MethodLibrary.java
@@ -1245,7 +1245,6 @@ public class MethodLibrary {
name = "append",
objectType = MutableList.class,
returnType = Runtime.NoneType.class,
- documented = false,
doc = "Adds an item to the end of the list.",
mandatoryPositionals = {
@Param(name = "self", type = MutableList.class, doc = "This list."),
@@ -1266,7 +1265,6 @@ public class MethodLibrary {
name = "extend",
objectType = MutableList.class,
returnType = Runtime.NoneType.class,
- documented = false,
doc = "Adds all items to the end of the list.",
mandatoryPositionals = {
@Param(name = "self", type = MutableList.class, doc = "This list."),