Ejemplo n.º 1
0
        public PftMfnWithLength(PftParser.MfnWithLengthContext node)
            : base(node)
        {
            string text = node.GetText();

            Length = (int)uint.Parse(text.Substring(4, text.Length - 5));
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="PftParser.MfnWithLength"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitMfnWithLength([NotNull] PftParser.MfnWithLengthContext context)
 {
 }
Ejemplo n.º 3
0
 public PftMfnWithLength(PftParser.MfnWithLengthContext node)
     : base(node)
 {
     Length = (int)uint.Parse(node.UNSIGNED().GetText());
 }