mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
26 lines
272 B
JavaScript
26 lines
272 B
JavaScript
var Or = 'or';
|
|
var And;
|
|
var NegateOr;
|
|
var NegateAnd = 'negate and';
|
|
'else';
|
|
'else';
|
|
|
|
if (true) {
|
|
'else if';
|
|
} else {
|
|
'else';
|
|
}
|
|
|
|
'negated if';
|
|
'negated if';
|
|
'negated if';
|
|
|
|
if (true) {
|
|
'negated if';
|
|
} else {
|
|
'negated else if';
|
|
}
|
|
|
|
'alternate';
|
|
'negated consequent';
|