Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(451)

Unified Diff: third_party/WebKit/Source/devtools/scripts/jsdoc_validator/src/org/chromium/devtools/jsdoc/checks/FunctionRecord.java

Issue 2464463002: Revert of DevTools: clean up scripts folder (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/scripts/jsdoc_validator/src/org/chromium/devtools/jsdoc/checks/FunctionRecord.java
diff --git a/third_party/WebKit/Source/devtools/scripts/jsdoc_validator/src/org/chromium/devtools/jsdoc/checks/FunctionRecord.java b/third_party/WebKit/Source/devtools/scripts/jsdoc_validator/src/org/chromium/devtools/jsdoc/checks/FunctionRecord.java
deleted file mode 100644
index a44286d092b0bd5e85cb28ac09190fafe5bf774b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/devtools/scripts/jsdoc_validator/src/org/chromium/devtools/jsdoc/checks/FunctionRecord.java
+++ /dev/null
@@ -1,67 +0,0 @@
-package org.chromium.devtools.jsdoc.checks;
-
-import com.google.javascript.jscomp.NodeUtil;
-import com.google.javascript.rhino.JSDocInfo;
-import com.google.javascript.rhino.Node;
-
-import java.util.ArrayList;
-import java.util.List;
-
-public class FunctionRecord {
- final Node functionNode;
- final JSDocInfo info;
- final String name;
- final List<String> parameterNames;
- final TypeRecord enclosingType;
- final FunctionRecord enclosingFunctionRecord;
-
- public FunctionRecord(Node functionNode, String name, List<String> parameterNames,
- TypeRecord parentType, FunctionRecord enclosingFunctionRecord) {
- this.functionNode = functionNode;
- this.info = NodeUtil.getBestJSDocInfo(functionNode);
- this.name = name;
- this.parameterNames = parameterNames;
- this.enclosingType = parentType;
- this.enclosingFunctionRecord = enclosingFunctionRecord;
- }
-
- public FunctionRecord() {
- this.functionNode = null;
- this.info = null;
- this.name = "";
- this.parameterNames = new ArrayList<>();
- this.enclosingType = null;
- this.enclosingFunctionRecord = null;
- }
-
- public boolean isConstructor() {
- return info != null && info.isConstructor();
- }
-
- public boolean isTopLevelFunction() {
- return enclosingFunctionRecord == null;
- }
-
- public boolean hasReturnAnnotation() {
- return info != null && info.getReturnType() != null;
- }
-
- public boolean hasThisAnnotation() {
- return info != null && info.getThisType() != null;
- }
-
- public boolean suppressesReceiverCheck() {
- return info != null && info.getOriginalCommentString().contains("@suppressReceiverCheck");
- }
-
- public boolean suppressesGlobalPropertiesCheck() {
- return info != null
- && info.getOriginalCommentString().contains("@suppressGlobalPropertiesCheck");
- }
-
- @Override
- public String toString() {
- return (info == null ? "" : info.getOriginalCommentString() + "\n")
- + (name == null ? "<anonymous>" : name) + "() @" + functionNode.getLineno();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698