예제 #1
0
 public static void SetResource(this Closure ctx, IEnumerable <ITypedElement> value)
 {
     ctx.SetValue("resource", value);
 }
예제 #2
0
 public static void SetOriginalContext(this Closure ctx, IEnumerable <ITypedElement> value)
 {
     ctx.SetValue("context", value);
 }
예제 #3
0
 public static void SetThat(this Closure ctx, IEnumerable <ITypedElement> value)
 {
     ctx.SetValue("builtin.that", value);
 }
예제 #4
0
 public static void SetResource(this Closure ctx, IEnumerable <IElementNavigator> value)
 {
     ctx.SetValue("resource", value);
 }
예제 #5
0
 public static void SetThis(this Closure ctx, IEnumerable <IElementNavigator> value)
 {
     ctx.SetValue("builtin.this", value);
 }
예제 #6
0
 public static void SetIndex(this Closure ctx, IEnumerable <ITypedElement> value)
 {
     ctx.SetValue("builtin.index", value);
 }