mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
27 lines
294 B
Plaintext
27 lines
294 B
Plaintext
/*
|
|
namespace: 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"); |