Blame view

js/lib/JSBuilder/tests/parser/before3.js 378 Bytes
16035364   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>