Exemplo n.º 1
0
        internal ElaExpression(Token tok, ElaNodeType type)
        {
            Type = type;

            if (tok != null)
            {
                Line = tok.line;
                Column = tok.col;
            }
        }
Exemplo n.º 2
0
        internal ElaExpression(Token tok, ElaNodeType type)
        {
            Type = type;

            if (tok != null)
            {
                Line   = tok.line;
                Column = tok.col;
            }
        }
Exemplo n.º 3
0
 internal ElaMatch(Token tok, ElaNodeType type) : base(tok, type)
 {
 }
Exemplo n.º 4
0
 internal ElaEquation(Token tok, ElaNodeType type) : base(tok, type)
 {
 }
Exemplo n.º 5
0
 internal ElaMatch(Token tok, ElaNodeType type)
     : base(tok, type)
 {
 }
Exemplo n.º 6
0
 protected ElaExpression(ElaNodeType type) : this(null, type)
 {
 }
Exemplo n.º 7
0
 protected ElaRecordLiteral(ElaNodeType type) : base(type)
 {
     Fields = new List <ElaFieldDeclaration>();
 }
Exemplo n.º 8
0
 internal ElaRecordLiteral(Token tok, ElaNodeType type) : base(tok, type)
 {
     Fields = new List <ElaFieldDeclaration>();
 }
Exemplo n.º 9
0
 protected ElaRecordLiteral(ElaNodeType type)
     : base(type)
 {
     Fields = new List<ElaFieldDeclaration>();
 }
Exemplo n.º 10
0
 internal ElaRecordLiteral(Token tok, ElaNodeType type)
     : base(tok, type)
 {
     Fields = new List<ElaFieldDeclaration>();
 }
Exemplo n.º 11
0
 internal ElaTupleLiteral(Token tok, ElaNodeType type)
     : base(tok, type)
 {
 }
Exemplo n.º 12
0
 internal ElaTupleLiteral(Token tok, ElaNodeType type) : base(tok, type)
 {
 }
Exemplo n.º 13
0
 protected ElaExpression(ElaNodeType type)
     : this(null, type)
 {
 }