예제 #1
0
 /// <summary>
 /// Add a documentation comment to this JSObject. If no non-null lines are provided, then nothing will be added.
 /// </summary>
 /// <param name="lines">The lines of text to add to the documentation comment.</param>
 public void DocumentationComment(params string[] lines)
 {
     if (builder.AnyCommentLines(lines))
     {
         SetCurrentState(State.BlockComment);
         builder.DocumentationComment(lines);
     }
 }