CodeLine

public abstract class CodeLine

A line of a JavaScript code.

The line is not aware of indentation.

Inheritors

Constructors

Link copied to clipboard
public void CodeLine()

Functions

Link copied to clipboard
public abstract String content()
Obtains the value of the line.
Link copied to clipboard
public static CodeLine emptyLine()
Obtains an empty code line.
Link copied to clipboard
public boolean equals(Object o)
Link copied to clipboard
public int hashCode()
Link copied to clipboard
public static CodeLine of(String content)
Obtains a code line with the specified content.
Link copied to clipboard
public String toString()