Ok, here's what's going on. From
"org.openlaszlo.js2doc.Comment.extractJS2DocComment (String)":
String cr = System.getProperty("line.separator");
Comment parsedComment = new Comment();
if (sourceComment != null) {
String content =
contentsPattern.matcher(sourceComment).replaceAll("$1");
String[] lines = content.split(cr);
That's obviously wrong. On a Windows machine the separator is \r\n, but
all line endings in the files are just \n, so no lines will be split!
I'm going to change that..
On 3/28/2010 8:45 PM, P T Withington wrote:
On 2010-03-28, at 13:49, André Bargull wrote:
So I guess I need to figure out why no components are picked up, that's why I
requested for the components.xml and doctestLaszloLibrary[..].js2doc files.
I'll run a doc build and send you what I get. Should be about 30 minutes.