/// <summary> /// Add a line comment to this JSObject. /// </summary> /// <param name="line">The line to add as a line comment to this JSObject.</param> public void LineComment(string line) { SetCurrentState(State.LineComment); builder.LineComment(line); }
public void LineComment(string text) { SetCurrentState(State.Comment); builder.LineComment(text); }