Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / jsbuilder / tests / parser / before3.js
diff --git a/jsbuilder/tests/parser/before3.js b/jsbuilder/tests/parser/before3.js
new file mode 100644 (file)
index 0000000..3b3512c
--- /dev/null
@@ -0,0 +1,23 @@
+//<debug error>
+    if (someCondition) {
+        throw new Error("Some error");
+    }
+//</debug>
+
+//<debug warn>
+    if (someCondition) {
+        console.warn("Some warning");
+    }
+//</debug>
+
+//<debug info>
+    if (someCondition) {
+        console.log("Some info");
+    }
+//</debug>
+
+//<debug>
+    if (someCondition) {
+        console.log("Some other info");
+    }
+//</debug>