Loyc.Ecs.Parser.EcsParser.DelegateDecl C# (CSharp) Method

DelegateDecl() private method

private DelegateDecl ( int startIndex, VList attrs ) : LNode
startIndex int
attrs VList
return LNode
		LNode DelegateDecl(int startIndex, VList<LNode> attrs)
		{
			var d = MatchAny();
			var type = DataType();
			var name = ComplexNameDecl();
			var r = MethodArgListAndBody(startIndex, d.StartIndex, attrs, S.Delegate, type, name);
			// line 1814
			return r.WithAttrs(attrs);
		}
	
EcsParser