예제 #1
0
 public StatementModifier(StatementModifierType type, Expression condition)
 {
     this.Type      = type;
     this.Condition = condition;
 }
예제 #2
0
		public bool ShouldSerialize(StatementModifierType value)
		{
			return (long)value != 0;
		}
예제 #3
0
		public StatementModifier(StatementModifierType type, Expression condition)
		{
			this.Type = type;
			this.Condition = condition;
		}		
예제 #4
0
		public Expression Serialize(StatementModifierType value)
		{
			return SerializeEnum("StatementModifierType", (long)value);
		}
예제 #5
0
 public StatementModifier(StatementModifierType type, Expression condition) : base(type, condition)
 {
 }
예제 #6
0
 public bool ShouldSerialize(StatementModifierType value)
 {
     return value != StatementModifierType.None;
 }
예제 #7
0
 protected StatementModifierImpl(LexicalInfo lexicalInfo, StatementModifierType type, Expression condition) : base(lexicalInfo)
 {
     Type      = type;
     Condition = condition;
 }
예제 #8
0
 protected StatementModifierImpl(StatementModifierType type, Expression condition)
 {
     Type      = type;
     Condition = condition;
 }