Class TagData

A simple container to store the line, column and html tag value to insert in the source file for comments, string literals, template literals and regexp literals

Source : file DocBuilder.js at line 48

Constructor

new TagData ( line, column, tag )

The constructor

Source : file DocBuilder.js at line 78

Parameters

Name Type Description
line Number

The line number in the source file where the tag must be inserted

column null or Number

The column number in the source file where the tag must be inserted

tag String

The tag to insert.

Public getters and setters

readonly get column : null or Number

The column number in the source file where the tag must be inserted If the tag must be inserted at the end of the line the value is null

Source : file DocBuilder.js at line 98

readonly get line : Number

The line number in the source file where the tag must be inserted

Source : file DocBuilder.js at line 90

readonly get tag : String

The tag to insert. To avoid a replacement of the < ,> and " chars when creating the source html file the < char is replaced with §lt§, the > char with §gt§ and the " char with §quot§ and then replaced with the correct value inthe source html file.

Source : file DocBuilder.js at line 108

Private properties

#column : null or Number

The column number in the source file where the tag must be inserted

Source : file DocBuilder.js at line 62

#line : Number

The line number in the source file where the tag must be inserted

Source : file DocBuilder.js at line 55

#tag : String

The tag to insert.

Source : file DocBuilder.js at line 69