Skip to content

Commit ff02559

Browse files
committed
v2 fix EvilBeaver#1493: объект Действие не ломает отображение переменных в отладке
1 parent 7a3239d commit ff02559

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

src/ScriptEngine/Machine/Contexts/ContextIValueImpl.cs

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -136,21 +136,15 @@ public virtual void SetPropValue(int propNum, IValue newVal)
136136
throw new NotImplementedException();
137137
}
138138

139-
public virtual int GetPropCount()
140-
{
141-
throw new NotImplementedException();
142-
}
139+
public virtual int GetPropCount() => 0;
143140

144141
public virtual string GetPropName(int propNum)
145142
{
146143
throw new NotImplementedException();
147144
}
148145

149-
public virtual int GetMethodsCount()
150-
{
151-
throw new NotImplementedException();
152-
}
153-
146+
public virtual int GetMethodsCount() => 0;
147+
154148
public virtual int GetMethodNumber(string name)
155149
{
156150
throw RuntimeException.MethodNotFoundException(name);

0 commit comments

Comments
 (0)