File tree Expand file tree Collapse file tree 5 files changed +23
-0
lines changed
Expand file tree Collapse file tree 5 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ component {
1212 , " set-cookie"
1313 , " query-manipulation"
1414 , " request"
15+ , " cfc-empty"
16+ , " cfc-5props"
1517 , " loops"
1618 , " primes"
1719 , " toString"
Original file line number Diff line number Diff line change 1+ <cfscript >
2+ loop times = 10 {
3+ new res .PropertiesCFC ();
4+ }
5+ </cfscript >
Original file line number Diff line number Diff line change 1+ <cfscript >
2+ loop times = 10 {
3+ new res .EmptyCFC ();
4+ }
5+ </cfscript >
Original file line number Diff line number Diff line change 1+ component {
2+
3+ }
Original file line number Diff line number Diff line change 1+ component {
2+ property name = " property1" type = " string" ;
3+ property name = " property2" type = " numeric" ;
4+ property name = " property3" type = " boolean" ;
5+ property name = " property4" type = " array" ;
6+ property name = " property5" type = " struct" ;
7+
8+ }
You can’t perform that action at this time.
0 commit comments