escapedIdentifiers.ts(25,16): error TS1540: A 'namespace' declaration should not be declared using the 'module' keyword. Please use the 'namespace' keyword instead.
escapedIdentifiers.ts(37,12): error TS2564: Property 'foo1' has no initializer and is not definitely assigned in the constructor.
escapedIdentifiers.ts(40,12): error TS2564: Property 'foo2' has no initializer and is not definitely assigned in the constructor.


==== escapedIdentifiers.ts (3 errors) ====
    /*
        0 .. \u0030
        9 .. \u0039
    
        A .. \u0041
        Z .. \u005a
    
        a .. \u0061
        z .. \u00za
    */
    
    // var decl
    var \u0061 = 1;
    a ++;
    \u0061 ++;
    
    var b = 1;
    b ++;
    \u0062 ++;
    
    // modules
    namespace moduleType1 { 
        export var baz1: number;
    }
    declare module moduleType\u0032 { 
                   ~~~~~~~~~~~~~~~~
!!! error TS1540: A 'namespace' declaration should not be declared using the 'module' keyword. Please use the 'namespace' keyword instead.
        export var baz2: number;
    }
    
    moduleType1.baz1 = 3;
    moduleType\u0031.baz1 = 3;
    moduleType2.baz2 = 3;
    moduleType\u0032.baz2 = 3;
    
    // classes
    
    class classType1 { 
        public foo1: number;
               ~~~~
!!! error TS2564: Property 'foo1' has no initializer and is not definitely assigned in the constructor.
    }
    class classType\u0032 { 
        public foo2: number;
               ~~~~
!!! error TS2564: Property 'foo2' has no initializer and is not definitely assigned in the constructor.
    }
    
    var classType1Object1 = new classType1();
    classType1Object1.foo1 = 2;
    var classType1Object2 = new classType\u0031();
    classType1Object2.foo1 = 2;
    var classType2Object1 = new classType2();
    classType2Object1.foo2 = 2;
    var classType2Object2 = new classType\u0032();
    classType2Object2.foo2 = 2;
    
    // interfaces
    interface interfaceType1 { 
        bar1: number;
    }
    interface interfaceType\u0032 { 
        bar2: number;
    }
    
    var interfaceType1Object1 = <interfaceType1>{ bar1: 0 };
    interfaceType1Object1.bar1 = 2;
    var interfaceType1Object2 = <interfaceType\u0031>{ bar1: 0 };
    interfaceType1Object2.bar1 = 2;
    var interfaceType2Object1 = <interfaceType2>{ bar2: 0 };
    interfaceType2Object1.bar2 = 2;
    var interfaceType2Object2 = <interfaceType\u0032>{ bar2: 0 };
    interfaceType2Object2.bar2 = 2;
    
    
    // arguments
    class testClass { 
        public func(arg1: number, arg\u0032: string, arg\u0033: boolean, arg4: number) { 
            arg\u0031 = 1;
            arg2 = 'string';
            arg\u0033 = true;
            arg4 = 2;
        }
    }
    
    // constructors
    class constructorTestClass { 
        constructor (public arg1: number,public arg\u0032: string,public arg\u0033: boolean,public arg4: number) { 
        }
    }
    var constructorTestObject = new constructorTestClass(1, 'string', true, 2);
    constructorTestObject.arg\u0031 = 1;
    constructorTestObject.arg2 = 'string';
    constructorTestObject.arg\u0033 = true;
    constructorTestObject.arg4 = 2;
    
    // Lables
    
    l\u0061bel1: 
        while (false)
        {  
           while(false)
               continue label1;  // it will go to next iteration of outer loop 
        } 
    
    label2: 
        while (false)
        {  
           while(false)
               continue l\u0061bel2;  // it will go to next iteration of outer loop 
        } 
    
    label3: 
        while (false)
        {  
           while(false)
               continue label3;  // it will go to next iteration of outer loop 
        } 
    
    l\u0061bel4: 
        while (false)
        {  
           while(false)
               continue l\u0061bel4;  // it will go to next iteration of outer loop 
        } 