-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
671 additions
and
670 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/Woohoo.Agi.Engine.UnitTest/Infrastructure/InterpreterBuilder.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright (c) Hugues Valois. All rights reserved. | ||
// Licensed under the X11 license. See LICENSE in the project root for license information. | ||
|
||
namespace Woohoo.Agi.Engine.UnitTest.Infrastructure; | ||
|
||
using Woohoo.Agi.Engine.Interpreter; | ||
|
||
internal class InterpreterBuilder | ||
{ | ||
public AgiInterpreter Build() | ||
{ | ||
var result = new AgiInterpreter(null, null, null); | ||
result.CreateState(); | ||
return result; | ||
} | ||
} |
Oops, something went wrong.