Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CSharpDeferredBody"/> class.
 /// </summary>
 /// <param name="context">The creation context.</param>
 /// <param name="parentFeature">The parent feature.</param>
 /// <param name="source">The Easly body from which the C# body is created.</param>
 protected CSharpDeferredBody(ICSharpContext context, ICSharpFeature parentFeature, IDeferredBody source)
     : base(context, parentFeature, source)
 {
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creates a new C# body.
 /// </summary>
 /// <param name="context">The creation context.</param>
 /// <param name="parentFeature">The parent feature.</param>
 /// <param name="source">The Easly body from which the C# body is created.</param>
 public static ICSharpDeferredBody Create(ICSharpContext context, ICSharpFeature parentFeature, IDeferredBody source)
 {
     return(new CSharpDeferredBody(context, parentFeature, source));
 }