/// <summary>
 /// Creates a new compiler instance
 /// </summary>
 /// <param name="parent">The target compiler for which this is a sub-compiler.</param>
 /// <param name="scheduledActivityManager">The scheduler for any asynchronous tasks that must be executed by the compiler.</param>
 public FunctionCompileHandler(TargetCompiler parent, IScheduledActivityManager scheduledActivityManager)
     : base(parent, scheduledActivityManager)
 {
 }
Example #2
0
 /// <summary>
 /// Creates a new compiler instance
 /// </summary>
 /// <param name="parent">The target compiler for which this is a sub-compiler.</param>
 /// <param name="scheduledActivityManager">The scheduler for any asynchronous tasks that must be executed by the compiler.</param>
 public TypeDiagramCompileHandler(TargetCompiler parent, IScheduledActivityManager scheduledActivityManager)
     : base(parent, scheduledActivityManager)
 {
 }