Boo.Lang.Parser.BooParserBase.splice_type_definition_body C# (CSharp) Method

splice_type_definition_body() public method

public splice_type_definition_body ( TypeMemberCollection container ) : void
container TypeMemberCollection
return void
        public void splice_type_definition_body(
		TypeMemberCollection container
	)
        {
            IToken  begin = null;

            Expression e = null;

            try {      // for error handling
            begin = LT(1);
            match(SPLICE_BEGIN);
            e=atom();
            eos();
            if (0==inputState.guessing)
            {

                        container.Add(new SpliceTypeDefinitionBody(e));

            }
            }
            catch (RecognitionException ex)
            {
            if (0 == inputState.guessing)
            {
                reportError(ex, "splice_type_definition_body");
                recover(ex,tokenSet_46_);
            }
            else
            {
                throw ex;
            }
            }
        }
BooParserBase