mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 15:41:36 +03:00
27 lines
287 B
Plaintext
27 lines
287 B
Plaintext
|
/*
|
||
|
ns: ParseStatement
|
||
|
expectation: Pass
|
||
|
*/
|
||
|
|
||
|
console.assert(x);
|
||
|
|
||
|
|
||
|
console.error("{}", x);
|
||
|
|
||
|
console.error("{}{}", x, y);
|
||
|
|
||
|
console.error("x");
|
||
|
|
||
|
|
||
|
console.debug("{}", x);
|
||
|
|
||
|
console.debug("{}{}", x, y);
|
||
|
|
||
|
console.debug("x");
|
||
|
|
||
|
|
||
|
console.log("{}", x);
|
||
|
|
||
|
console.log("{}{}", x, y);
|
||
|
|
||
|
console.log("x");
|