Skip to content

Commit

Permalink
Comments cleanup in NGTemplateParser, note on inlineTagCount
Browse files Browse the repository at this point in the history
  • Loading branch information
hugithordarson committed Nov 16, 2024
1 parent efd57b8 commit 7cb8862
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,16 @@ public class NGTemplateParser {
private NGDynamicHTMLTag _currentDynamicTag = new NGDynamicHTMLTag();

/**
* Keeps track of declarations. Will initially contain the parsed declarationString (if present) and any inline bindings will get added here as well.
* The declarations parsed from the provided wod string (if present)
*/
private Map<String, NGDeclaration> _declarations;

/**
* Keeps track of how many inline tags have been parsed. Used only to generate the tag declaration's name.
* Keeps track of the number of parsed inline tags. Used to generate a declaration name for the tag
*
* FIXME: We don't really need to keep track of the number of parsed inline tags anymore // Hugi 2024-11-16
*/
@Deprecated
private int _inlineTagCount;

/**
Expand Down

0 comments on commit 7cb8862

Please sign in to comment.