Mercurial > pub > ImplabNet
view Implab/Parsing/BinaryToken.cs @ 86:b33832ab0262 v2
ServiceLocator: added a cleanup callback to the service registration method
author | cin |
---|---|
date | Mon, 06 Oct 2014 03:41:17 +0400 |
parents | c0bf853aa04f |
children |
line wrap: on
line source
using Implab; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Implab.Parsing { public abstract class BinaryToken : Token { Token m_left; Token m_right; public Token Left { get { return m_left; } } public Token Right { get { return m_right; } } protected BinaryToken(Token left, Token right) { Safe.ArgumentNotNull(m_left = left, "left"); Safe.ArgumentNotNull(m_right = right, "right"); } } }