Package com.google.javascript.rhino

Examples of com.google.javascript.rhino.JSDocInfoBuilder


      setSourceInfo(decl);
      return decl;
    }

    private JSDocInfo createConstantJsDoc() {
      JSDocInfoBuilder builder = new JSDocInfoBuilder(false);
      builder.recordConstancy();
      return builder.build(null);
    }
View Full Code Here


    this.associatedNode = associatedNode;

    // Sometimes this will be null in tests.
    this.sourceName = associatedNode == null ? "" : associatedNode.getSourceFileName();

    this.jsdocBuilder = new JSDocInfoBuilder(config.parseJsDocDocumentation);
    if (commentNode != null) {
      this.jsdocBuilder.recordOriginalCommentString(commentNode.getValue());
    }
    this.annotationNames = config.annotationNames;
    this.suppressionNames = config.suppressionNames;
View Full Code Here

TOP

Related Classes of com.google.javascript.rhino.JSDocInfoBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.