Skip to content

Commit ef7bde4

Browse files
committed
TS: Fix javadoc
1 parent 6ac72bd commit ef7bde4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

javascript/extractor/src/com/semmle/ts/ast/UnaryTypeExpr.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
import com.semmle.js.ast.SourceLocation;
44
import com.semmle.js.ast.Visitor;
55

6-
/** A type of form <tt>keyof T</tt> where <tt>T</tt> is a type. */
6+
/**
7+
* A unary operator applied to a type.
8+
*
9+
* This can be <tt>keyof T</tt> or <tt>readonly T</tt>.
10+
*/
711
public class UnaryTypeExpr extends TypeExpression {
812
private final ITypeExpression elementType;
913
private final Kind kind;

0 commit comments

Comments
 (0)