In C# when I want to chain constructors together I'd do this...
public class OperationMacro : GeneratePropertyMacro {
public OperationMacro() : base("Operation") {
//Whatever else I need to do...
}
}
What is the equivalent syntax in Boo?