This commit is contained in:
beard%netscape.com 2000-03-31 05:47:42 +00:00
Родитель 3438f7ea3e
Коммит dff6633c76
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -104,7 +104,7 @@ namespace JavaScript {
/****************************************************************/
/****************************************************************/
enum StateKind { While_State, If_state };
enum StateKind { While_State, If_State };
class ICodeState {
public :
@ -139,7 +139,7 @@ namespace JavaScript {
class IfCodeState : public ICodeState {
public:
IfCodeState(int32 a, int32 b) : ICodeState(If_state), elseLabel(a), beyondElse(b) { }
IfCodeState(int32 a, int32 b) : ICodeState(If_State), elseLabel(a), beyondElse(b) { }
int32 elseLabel;
int32 beyondElse;
};

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

@ -104,7 +104,7 @@ namespace JavaScript {
/****************************************************************/
/****************************************************************/
enum StateKind { While_State, If_state };
enum StateKind { While_State, If_State };
class ICodeState {
public :
@ -139,7 +139,7 @@ namespace JavaScript {
class IfCodeState : public ICodeState {
public:
IfCodeState(int32 a, int32 b) : ICodeState(If_state), elseLabel(a), beyondElse(b) { }
IfCodeState(int32 a, int32 b) : ICodeState(If_State), elseLabel(a), beyondElse(b) { }
int32 elseLabel;
int32 beyondElse;
};