aspclassic-core/AspClassic.Scripting/Runtime/InvariantContext.cs
Jelle Luteijn 484dbfc9d9 progress
2022-05-15 11:19:49 +02:00

18 lines
409 B
C#

using System;
namespace AspClassic.Scripting.Runtime;
internal sealed class InvariantContext : LanguageContext
{
public override bool CanCreateSourceCode => false;
internal InvariantContext(ScriptDomainManager manager)
: base(manager)
{
}
public override ScriptCode CompileSourceCode(SourceUnit sourceUnit, CompilerOptions options, ErrorSink errorSink)
{
throw new NotSupportedException();
}
}