diff options
author | Tyson <Tyson@Ultrabook2.SPWiFi> | 2014-02-11 16:26:45 -0600 |
---|---|---|
committer | Tyson <Tyson@Ultrabook2.SPWiFi> | 2014-02-11 16:26:45 -0600 |
commit | af74bd1af962421eb5fac04ef41e3dcfd59d083a (patch) | |
tree | 411d711079e39c32c369f0aa048f1af50a8f9601 /tests/examplefiles/exampleScript.cfc | |
parent | ef1bbdffe2999a9223bde5f0740f1fddbbd88035 (diff) | |
download | pygments-af74bd1af962421eb5fac04ef41e3dcfd59d083a.tar.gz |
Check for ColdFusion scopes.
Diffstat (limited to 'tests/examplefiles/exampleScript.cfc')
-rw-r--r-- | tests/examplefiles/exampleScript.cfc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/examplefiles/exampleScript.cfc b/tests/examplefiles/exampleScript.cfc index 5d22c73e..002acbcd 100644 --- a/tests/examplefiles/exampleScript.cfc +++ b/tests/examplefiles/exampleScript.cfc @@ -45,6 +45,13 @@ component extends="coldbox.system.orm.hibernate.VirtualEntityService" singleton{ // init it
super.init(entityName=arguments.entityName, useQueryCaching=true);
+ // Test scope coloring in pygments
+ this.colorTestVar = "Just for testing pygments!";
+ cookie.colorTestVar = "";
+ client.colorTestVar = ""
+ session.colorTestVar = "";
+ application.colorTestVar = "";
+
return this;
}
|