本文整理汇总了C#中ProtoScript.Runners.DebugRunner.StepOver方法的典型用法代码示例。如果您正苦于以下问题:C# DebugRunner.StepOver方法的具体用法?C# DebugRunner.StepOver怎么用?C# DebugRunner.StepOver使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ProtoScript.Runners.DebugRunner
的用法示例。
在下文中一共展示了DebugRunner.StepOver方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestCyclicPointer01
public void TestCyclicPointer01()
{
var core = thisTest.GetTestCore();
DebugRunner fsr = new DebugRunner(core);
// Execute and verify the main script in a debug session
fsr.PreStart(
@"
class Obj
{
x : var;
constructor Obj()
{
x = null;
}
}
p = Obj.Obj();
p.x = p; // Assign the member x to its own 'this' pointer. This creates a cycle
m = p.x;
");
DebugRunner.VMState vms = fsr.StepOver();
vms = fsr.StepOver();
vms = fsr.StepOver();
// Test the heap contains a cycle
var runtimeCore = fsr.runtimeCore;
Assert.IsTrue(runtimeCore.Heap.IsHeapCyclic());
}
示例2: DebugRunnerStepOver
internal static ProtoCore.Core DebugRunnerStepOver(string code)
{
//Internal setup
ProtoCore.Core core;
DebugRunner fsr;
ProtoScript.Config.RunConfiguration runnerConfig;
string testPath = @"..\..\..\Scripts\Debugger\";
// Specify some of the requirements of IDE.
var options = new ProtoCore.Options();
options.ExecutionMode = ProtoCore.ExecutionMode.Serial;
options.SuppressBuildOutput = false;
core = new ProtoCore.Core(options);
core.Executives.Add(ProtoCore.Language.kAssociative, new ProtoAssociative.Executive(core));
core.Executives.Add(ProtoCore.Language.kImperative, new ProtoImperative.Executive(core));
runnerConfig = new ProtoScript.Config.RunConfiguration();
runnerConfig.IsParrallel = false;
fsr = new DebugRunner(core);
DLLFFIHandler.Register(FFILanguage.CSharp, new CSModuleHelper());
CLRModuleType.ClearTypes();
//Run
fsr.PreStart(code, runnerConfig);
DebugRunner.VMState vms = null;
while (!fsr.isEnded)
vms = fsr.StepOver();
return core;
}
示例3: DebugRunnerStepOver
internal static ProtoCore.Core DebugRunnerStepOver(string code, out RuntimeCore runtimeCore)
{
//Internal setup
ProtoCore.Core core;
DebugRunner fsr;
// Specify some of the requirements of IDE.
var options = new ProtoCore.Options();
options.ExecutionMode = ProtoCore.ExecutionMode.Serial;
options.SuppressBuildOutput = false;
options.GCTempVarsOnDebug = false;
string testPath = @"..\..\..\test\Engine\ProtoTest\ImportFiles\";
options.IncludeDirectories.Add(testPath);
core = new ProtoCore.Core(options);
core.Compilers.Add(ProtoCore.Language.kAssociative, new ProtoAssociative.Compiler(core));
core.Compilers.Add(ProtoCore.Language.kImperative, new ProtoImperative.Compiler(core));
fsr = new DebugRunner(core);
DLLFFIHandler.Register(FFILanguage.CSharp, new CSModuleHelper());
CLRModuleType.ClearTypes();
//Run
fsr.PreStart(code);
DebugRunner.VMState vms = null;
while (!fsr.isEnded)
vms = fsr.StepOver();
runtimeCore = fsr.runtimeCore;
return core;
}