Antlr4.Codegen.Model.Chunk.SetAttr.SetAttr C# (CSharp) Method

SetAttr() public method

public SetAttr ( StructDecl ctx, string name, IList rhsChunks ) : System.Collections.Generic
ctx Antlr4.Codegen.Model.Decl.StructDecl
name string
rhsChunks IList
return System.Collections.Generic
        public SetAttr(StructDecl ctx, string name, IList<ActionChunk> rhsChunks)
            : base(ctx)
        {
            this.name = name;
            this.rhsChunks = rhsChunks;
        }
    }
SetAttr