@@ -192,9 +192,6 @@ module Templating {
192192 /** Gets a data flow node that refers a template file to be instantiated, if any. */
193193 DataFlow:: Node getTemplateFileNode ( ) { result = range .getTemplateFileNode ( ) }
194194
195- /** Gets a data flow node that refers to the contents of the template to be instantiated, if any. */
196- DataFlow:: Node getTemplateContentNode ( ) { result = range .getTemplateContentNode ( ) }
197-
198195 /** Gets a data flow node that refers to an object whose properties become variables in the template. */
199196 DataFlow:: Node getTemplateParamsNode ( ) { result = range .getTemplateParamsNode ( ) }
200197
@@ -220,9 +217,6 @@ module Templating {
220217 /** Gets a data flow node that refers a template file to be instantiated, if any. */
221218 abstract DataFlow:: Node getTemplateFileNode ( ) ;
222219
223- /** Gets a data flow node that refers to the contents of the template to be instantiated, if any. */
224- abstract DataFlow:: Node getTemplateContentNode ( ) ;
225-
226220 /** Gets a data flow node that refers to an object whose properties become variables in the template. */
227221 abstract DataFlow:: Node getTemplateParamsNode ( ) ;
228222
@@ -631,9 +625,6 @@ module Templating {
631625 /** Gets a data flow node that refers a template file to be instantiated, if any. */
632626 override DataFlow:: Node getTemplateFileNode ( ) { result = getArgument ( 0 ) }
633627
634- /** Gets a data flow node that refers to the contents of the template to be instantiated, if any. */
635- override DataFlow:: Node getTemplateContentNode ( ) { none ( ) }
636-
637628 /** Gets a data flow node that refers to an object whose properties become variables in the template. */
638629 override DataFlow:: Node getTemplateParamsNode ( ) { result = getArgument ( 1 ) }
639630 }
@@ -709,8 +700,6 @@ module Templating {
709700
710701 override DataFlow:: Node getTemplateFileNode ( ) { result = getArgument ( 0 ) }
711702
712- override DataFlow:: Node getTemplateContentNode ( ) { none ( ) }
713-
714703 override DataFlow:: Node getTemplateParamsNode ( ) { result = getArgument ( 1 ) }
715704 }
716705}
0 commit comments