commit | 547aa486608be0e3eec682759d53c26948996f1f | [log] [tgz] |
---|---|---|
author | Klaus Aehlig <aehlig@google.com> | Mon Mar 18 11:44:11 2019 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Mon Mar 18 11:46:05 2019 -0700 |
tree | ed7ca1aaafe36851d476d9c4773ce3533d8c3e2e | |
parent | 9303df6afe297cefc35b9e71873e0ded4c3df237 [diff] [blame] |
Support Repository Rules in Stardoc Make the fake implementation of repository_rule register the rule instead of blindly returning the implementation function. In this way, the documentation generated for repository rules contains the correct arguments. Fixes https://github.com/bazelbuild/skydoc/issues/168 Change-Id: I4b4101a9a604282051eeaadafccdc9a987b14264 PiperOrigin-RevId: 239029265
diff --git a/src/main/java/com/google/devtools/build/skydoc/fakebuildapi/FakeSkylarkRuleFunctionsApi.java b/src/main/java/com/google/devtools/build/skydoc/fakebuildapi/FakeSkylarkRuleFunctionsApi.java index 9690686..875b3ca 100644 --- a/src/main/java/com/google/devtools/build/skydoc/fakebuildapi/FakeSkylarkRuleFunctionsApi.java +++ b/src/main/java/com/google/devtools/build/skydoc/fakebuildapi/FakeSkylarkRuleFunctionsApi.java
@@ -206,7 +206,7 @@ * A comparator for {@link AttributeInfo} objects which sorts by attribute name alphabetically, * except that any attribute named "name" is placed first. */ - private static class AttributeNameComparator implements Comparator<AttributeInfo> { + public static class AttributeNameComparator implements Comparator<AttributeInfo> { @Override public int compare(AttributeInfo o1, AttributeInfo o2) {