Flash and its non-strict OOP scope

I was writing some stuff today and i realized that variables inside a class are not constrained to the constructor or method scope. In my opinion this is utter lazynes. Scopes need to be fully enforced to force programmers to comply with correct OOP styles and organization.

to force yourslef to comply with the standards, when reffering to the consturctor always use the ‘this’ prefix and use ‘var’ for all temporary variables that should be inside the method scope.