Name
cfinternaldebug
Synopsis
<cfinternaldebug>
This undocumented tag is used by the product development group at Macromedia for internal debugging purposes. The tag can also compile ColdFusion templates without executing them. The CFML Syntax Checker that comes with ColdFusion 4.x uses this tag.
Attributes
-
action="action" Specifies the action for the tag to take. Optional. The default action is Break, which forces a break-point exception in the execution of a template. Leak causes the ColdFusion server to leak memory. The amount of memory to be leaked is specified in the
leaksizeattribute. These two actions are used by the Macromedia product development group for internal debugging. PCode compiles the ColdFusion template specified intemplatepathinto p-code without executing it.-
leaksize="integer" The amount of memory to leak. Must be a value greater than 1. Required when
actionisLeak.-
outvar="variable" The name of the variable that holds any error messages generated when compiling a template. If no errors are generated, an empty string is saved to the variable. Required when
actionisPCode.-
templatepath="path" Full path including filename of the ColdFusion template you want to compile. Required when
actionisPCode.