annotate Implab/Automaton/RegularExpressions/BinaryToken.cs @ 196:40d7fed4a09e
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
author |
cin |
date |
Mon, 29 Aug 2016 23:15:51 +0300 |
parents |
a0ff6a0e9c44 |
children |
|
rev |
line source |
162
|
1 using Implab;
|
|
2
|
|
3 namespace Implab.Automaton.RegularExpressions {
|
177
|
4 public abstract class BinaryToken: Token {
|
|
5 readonly Token m_left;
|
|
6 readonly Token m_right;
|
162
|
7
|
177
|
8 public Token Left {
|
162
|
9 get { return m_left; }
|
|
10 }
|
|
11
|
177
|
12 public Token Right {
|
162
|
13 get { return m_right; }
|
|
14 }
|
|
15
|
177
|
16 protected BinaryToken(Token left, Token right) {
|
162
|
17 Safe.ArgumentNotNull(m_left = left, "left");
|
|
18 Safe.ArgumentNotNull(m_right = right, "right");
|
|
19 }
|
|
20 }
|
|
21 }
|