--- old/buildtools/nasgen/src/jdk/nashorn/internal/tools/nasgen/MemberInfo.java 2015-12-16 15:53:39.466743300 +0530 +++ new/buildtools/nasgen/src/jdk/nashorn/internal/tools/nasgen/MemberInfo.java 2015-12-16 15:53:39.005717000 +0530 @@ -85,6 +85,8 @@ private MemberInfo.Kind kind; // script property name private String name; + // documentation for this member + private String documentation; // script property attributes private int attributes; // name of the java member @@ -137,6 +139,20 @@ } /** + * @return the documentation + */ + public String getDocumentation() { + return documentation; + } + + /** + * @param doc the documentation to set + */ + public void setDocumentation(final String doc) { + this.documentation = doc; + } + + /** * Tag something as specialized constructor or not * @param isSpecializedConstructor boolean, true if specialized constructor */