blob: 44d7337598dae55c83607c055df393ef7f7e7518 [file] [log] [blame]
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/*member: main:[null|powerset={null}]*/
main() {
simpleConditional();
simpleConditionalTrue();
simpleConditionalFalse();
conditionalIs();
conditionalIsInt();
conditionalIsNot();
conditionalIsNotInt();
conditionalNull();
conditionalNotNull();
}
////////////////////////////////////////////////////////////////////////////////
/// Simple conditional with unknown condition value.
////////////////////////////////////////////////////////////////////////////////
/*member: _simpleConditional:Union([exact=JSString|powerset={I}{O}{I}], [exact=JSUInt31|powerset={I}{O}{N}], powerset: {I}{O}{IN})*/
_simpleConditional(/*[exact=JSBool|powerset={I}{O}{N}]*/ c) => c ? '' : 0;
/*member: simpleConditional:[null|powerset={null}]*/
simpleConditional() {
_simpleConditional(true);
_simpleConditional(false);
}
////////////////////////////////////////////////////////////////////////////////
/// Simple conditional with unknown condition value.
////////////////////////////////////////////////////////////////////////////////
/*member: _simpleConditionalTrue:Union([exact=JSString|powerset={I}{O}{I}], [exact=JSUInt31|powerset={I}{O}{N}], powerset: {I}{O}{IN})*/
_simpleConditionalTrue(
/*Value([exact=JSBool|powerset={I}{O}{N}], value: true, powerset: {I}{O}{N})*/ c,
) => c ? '' : 0;
/*member: simpleConditionalTrue:[null|powerset={null}]*/
simpleConditionalTrue() {
_simpleConditionalTrue(true);
}
////////////////////////////////////////////////////////////////////////////////
/// Simple conditional with unknown condition value.
////////////////////////////////////////////////////////////////////////////////
/*member: _simpleConditionalFalse:Union([exact=JSString|powerset={I}{O}{I}], [exact=JSUInt31|powerset={I}{O}{N}], powerset: {I}{O}{IN})*/
_simpleConditionalFalse(
/*Value([exact=JSBool|powerset={I}{O}{N}], value: false, powerset: {I}{O}{N})*/ c,
) => c ? '' : 0;
/*member: simpleConditionalFalse:[null|powerset={null}]*/
simpleConditionalFalse() {
_simpleConditionalFalse(false);
}
////////////////////////////////////////////////////////////////////////////////
/// Conditional with an is test.
////////////////////////////////////////////////////////////////////////////////
/*member: _conditionalIs:Union([exact=JSString|powerset={I}{O}{I}], [subclass=JSPositiveInt|powerset={I}{O}{N}], powerset: {I}{O}{IN})*/
_conditionalIs(/*[null|exact=JSUInt31|powerset={null}{I}{O}{N}]*/ o) =>
o is int ? o. /*invoke: [exact=JSUInt31|powerset={I}{O}{N}]*/ abs() : '';
/*member: conditionalIs:[null|powerset={null}]*/
conditionalIs() {
_conditionalIs(null);
_conditionalIs(1);
}
////////////////////////////////////////////////////////////////////////////////
/// Conditional with an is `int` test known to be true.
////////////////////////////////////////////////////////////////////////////////
/*member: _conditionalIsInt:Union([exact=JSString|powerset={I}{O}{I}], [subclass=JSPositiveInt|powerset={I}{O}{N}], powerset: {I}{O}{IN})*/
_conditionalIsInt(/*[exact=JSUInt31|powerset={I}{O}{N}]*/ o) =>
o is int ? o. /*invoke: [exact=JSUInt31|powerset={I}{O}{N}]*/ abs() : '';
/*member: conditionalIsInt:[null|powerset={null}]*/
conditionalIsInt() {
_conditionalIsInt(1);
}
////////////////////////////////////////////////////////////////////////////////
/// Conditional with an is-not test.
////////////////////////////////////////////////////////////////////////////////
/*member: _conditionalIsNot:Union([exact=JSString|powerset={I}{O}{I}], [subclass=JSPositiveInt|powerset={I}{O}{N}], powerset: {I}{O}{IN})*/
_conditionalIsNot(/*[null|exact=JSUInt31|powerset={null}{I}{O}{N}]*/ o) =>
o is! int ? '' : o. /*invoke: [exact=JSUInt31|powerset={I}{O}{N}]*/ abs();
/*member: conditionalIsNot:[null|powerset={null}]*/
conditionalIsNot() {
_conditionalIsNot(null);
_conditionalIsNot(1);
}
////////////////////////////////////////////////////////////////////////////////
/// Conditional with an is-not `int` test known to be false.
////////////////////////////////////////////////////////////////////////////////
/*member: _conditionalIsNotInt:Union([exact=JSString|powerset={I}{O}{I}], [subclass=JSPositiveInt|powerset={I}{O}{N}], powerset: {I}{O}{IN})*/
_conditionalIsNotInt(/*[exact=JSUInt31|powerset={I}{O}{N}]*/ o) =>
o is! int ? '' : o. /*invoke: [exact=JSUInt31|powerset={I}{O}{N}]*/ abs();
/*member: conditionalIsNotInt:[null|powerset={null}]*/
conditionalIsNotInt() {
_conditionalIsNotInt(1);
}
////////////////////////////////////////////////////////////////////////////////
/// Conditional with an is test.
////////////////////////////////////////////////////////////////////////////////
/*member: _conditionalNull:Union([exact=JSString|powerset={I}{O}{I}], [subclass=JSPositiveInt|powerset={I}{O}{N}], powerset: {I}{O}{IN})*/
_conditionalNull(/*[null|exact=JSUInt31|powerset={null}{I}{O}{N}]*/ o) =>
o == null ? '' : o. /*invoke: [exact=JSUInt31|powerset={I}{O}{N}]*/ abs();
/*member: conditionalNull:[null|powerset={null}]*/
conditionalNull() {
_conditionalNull(null);
_conditionalNull(1);
}
////////////////////////////////////////////////////////////////////////////////
/// Conditional with an is `int` test known to be true.
////////////////////////////////////////////////////////////////////////////////
/*member: _conditionalNotNull:Union([exact=JSString|powerset={I}{O}{I}], [subclass=JSPositiveInt|powerset={I}{O}{N}], powerset: {I}{O}{IN})*/
_conditionalNotNull(/*[null|exact=JSUInt31|powerset={null}{I}{O}{N}]*/ o) =>
o != null ? o. /*invoke: [exact=JSUInt31|powerset={I}{O}{N}]*/ abs() : '';
/*member: conditionalNotNull:[null|powerset={null}]*/
conditionalNotNull() {
_conditionalNotNull(null);
_conditionalNotNull(1);
}