dorba / blade

The core tools for Blade rich client development.
89 stars 14 forks source link

Base constructor with arguments not supported. #8

Closed Ventajou closed 12 years ago

Ventajou commented 12 years ago

The following code fails to compile with the error: No translator was found to handle model of type Blade.Compiler.Models.Argument

    public class TestClass
    {
        public TestClass(string someString)
        {
        }
    }

    public class TestSubClass : TestClass
    {
        public TestSubClass(string someString)
            : base(someString)
        {
        }
    }