git.ithinksw.org
/
extjs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git]
/
jsbuilder
/
tests
/
parser
/
before3.js
1
//<debug error>
2
if (someCondition) {
3
throw new Error("Some error");
4
}
5
//</debug>
6
7
//<debug warn>
8
if (someCondition) {
9
console.warn("Some warning");
10
}
11
//</debug>
12
13
//<debug info>
14
if (someCondition) {
15
console.log("Some info");
16
}
17
//</debug>
18
19
//<debug>
20
if (someCondition) {
21
console.log("Some other info");
22
}
23
//</debug>