summaryrefslogtreecommitdiff
path: root/src/3rdparty/squirrel/samples/classattributes.nut
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/squirrel/samples/classattributes.nut')
-rw-r--r--src/3rdparty/squirrel/samples/classattributes.nut35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/3rdparty/squirrel/samples/classattributes.nut b/src/3rdparty/squirrel/samples/classattributes.nut
new file mode 100644
index 000000000..01232002c
--- /dev/null
+++ b/src/3rdparty/squirrel/samples/classattributes.nut
@@ -0,0 +1,35 @@
+class Foo {
+ //constructor
+ constructor(a)
+ {
+ testy = ["stuff",1,2,3];
+ }
+ //attributes of PrintTesty
+ </ test = "freakin attribute"/>
+ function PrintTesty()
+ {
+ foreach(i,val in testy)
+ {
+ ::print("idx = "+i+" = "+val+" \n");
+ }
+ }
+ //attributes of testy
+ </ flippy = 10 , second = [1,2,3] />
+ testy = null;
+
+}
+
+foreach(member,val in Foo)
+{
+ ::print(member+"\n");
+ local attr;
+ if((attr = Foo.getattributes(member)) != null) {
+ foreach(i,v in attr)
+ {
+ ::print("\t"+i+" = "+(typeof v)+"\n");
+ }
+ }
+ else {
+ ::print("\t<no attributes>\n")
+ }
+}