TS: Fix javadoc

This commit is contained in:
Asger F
2019-04-10 15:33:39 +01:00
parent 6ac72bd469
commit ef7bde472b

View File

@@ -3,7 +3,11 @@ package com.semmle.ts.ast;
import com.semmle.js.ast.SourceLocation;
import com.semmle.js.ast.Visitor;
/** A type of form <tt>keyof T</tt> where <tt>T</tt> is a type. */
/**
* A unary operator applied to a type.
*
* This can be <tt>keyof T</tt> or <tt>readonly T</tt>.
*/
public class UnaryTypeExpr extends TypeExpression {
private final ITypeExpression elementType;
private final Kind kind;