18 lines
409 B
C#
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();
|
|
}
|
|
}
|