1This page checks the stop directive inside an if statement 2 3#if(false) 4 5 #stop 6 7#end 8 9this should render 10 11#if(true) 12 13#stop 14 15#end 16 17this should not render 18 19check reference 20#set($a = 10) 21$a 22 23check method call 24$a.toString() 25 26check escaped directive 27\#if 28 29check escaped reference 30\$a 31 32