Correcting an error: 'this' should have been contained inside constructor functions.

This commit is contained in:
pschwartau%netscape.com 2001-08-14 21:55:19 +00:00
Родитель e298cfc514
Коммит 2abdc26434
1 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -71,8 +71,11 @@ class C2 extends C1
static class C3
{
this.texture = 'smooth';
this.width = 0;
constructor function C3()
{
this.texture = 'smooth';
this.width = 0;
}
}
class C4 extends C3
@ -81,8 +84,11 @@ class C4 extends C3
dynamic class C5
{
this.texture = 'smooth';
this.width = 0;
constructor function C5()
{
this.texture = 'smooth';
this.width = 0;
}
}
class C6 extends C5