@@ -15,8 +15,8 @@ namespace Kaleidoscope.Runtime
1515{
1616 /// <summary>REPL Loop implementation for the Kaleidoscope language</summary>
1717 /// <typeparam name="T">Type of values produced by the evaluation stage</typeparam>
18- public abstract class KaleidoscopeReadEvaluatePrintLoopBase < T >
19- : REPLBase < T >
18+ public abstract class ReadEvaluatePrintLoopBase < T >
19+ : Ubiquity . NET . Runtime . Utils . REPLBase < T >
2020 {
2121 /// <summary>Gets the Kaleidoscope language level for this instance</summary>
2222 public LanguageLevel LanguageFeatureLevel { get ; }
@@ -64,23 +64,23 @@ public sealed override void ShowPrompt( ReadyState state )
6464 await Run ( input , parser , generator , cancelToken ) ;
6565 }
6666
67- /// <summary>Initializes a new instance of the <see cref="KaleidoscopeReadEvaluatePrintLoopBase {T}"/> class.</summary>
67+ /// <summary>Initializes a new instance of the <see cref="ReadEvaluatePrintLoopBase {T}"/> class.</summary>
6868 /// <param name="level">Language level supported by this REPL instance</param>
6969 /// <remarks>
7070 /// This is protected to prevent use by anything other than a derived type.
7171 /// </remarks>
72- protected KaleidoscopeReadEvaluatePrintLoopBase ( LanguageLevel level )
72+ protected ReadEvaluatePrintLoopBase ( LanguageLevel level )
7373 : this ( level , new ParseErrorDiagnosticAdapter ( new ColoredConsoleReporter ( ) , "KLS" ) )
7474 {
7575 }
7676
77- /// <summary>Initializes a new instance of the <see cref="KaleidoscopeReadEvaluatePrintLoopBase {T}"/> class.</summary>
77+ /// <summary>Initializes a new instance of the <see cref="ReadEvaluatePrintLoopBase {T}"/> class.</summary>
7878 /// <param name="level">Language level supported by this REPL instance</param>
7979 /// <param name="logger">Logger to report any issues parsing the input.</param>
8080 /// <remarks>
8181 /// This is protected to prevent use by anything other than a derived type.
8282 /// </remarks>
83- protected KaleidoscopeReadEvaluatePrintLoopBase ( LanguageLevel level , IParseErrorReporter logger )
83+ protected ReadEvaluatePrintLoopBase ( LanguageLevel level , IParseErrorReporter logger )
8484 : base ( logger )
8585 {
8686 LanguageFeatureLevel = level ;
0 commit comments