JavaScript: Port JSDoc parser to Java.

This commit is contained in:
Max Schaefer
2018-11-09 08:38:52 +00:00
parent c14ebac455
commit f06cef5d40
4 changed files with 2217 additions and 238 deletions

View File

@@ -21,6 +21,10 @@ public class SourceLocation {
this(source, start, null);
}
public SourceLocation(SourceLocation that) {
this(that.source, that.start, that.end);
}
/**
* The source code contained in this location.
*/