Refactoring a couple of method related to dynamic compilation

Abstract away WebForms syntax knowledge from extension loader
implementations.

Rename the corresponding methods to be more semantically correct.

--HG--
branch : 1.x
This commit is contained in:
Renaud Paquay
2011-05-25 20:56:02 -07:00
parent 6d0b7e1d61
commit 314c9cb9a6
9 changed files with 70 additions and 50 deletions

View File

@@ -183,15 +183,11 @@ Features:
public void Monitor(ExtensionDescriptor extension, Action<IVolatileToken> monitor) {
}
public string GetWebFormAssemblyDirective(DependencyDescriptor dependency) {
public IEnumerable<ExtensionCompilationReference> GetCompilationReferences(DependencyDescriptor dependency) {
throw new NotImplementedException();
}
public IEnumerable<string> GetWebFormVirtualDependencies(DependencyDescriptor dependency) {
throw new NotImplementedException();
}
public IEnumerable<string> GetDynamicModuleDependencies(DependencyDescriptor dependency, string virtualPath) {
public IEnumerable<string> GetVirtualPathDependencies(DependencyDescriptor dependency) {
throw new NotImplementedException();
}