What happened to deepMacroExpandUntil

FLINQ and Quotation Visualizer samples used this feature, but I can't find it anywhere. Thank.

+3
source share
1 answer

The function deepMacroExpandUntilwas a fairly simple utility that performed only two things:

  • He replaced all method calls with an attribute ReflectedDefinitionwith the method body
  • This reduced lambda applications, so it (fun x -> x * x) (1+2)will become(1+2)*(1+2)

This was very helpful when writing quote processing code, but newer versions of F # include ExprShapeactive templates that make it easy to record quote processing manually.

To implement something like deepMacroExpandUntil, you should write something like:

open Microsoft.FSharp.Quotations

/// The parameter 'vars' is an immutable map that assigns expressions to variables
/// (as we recursively process the tree, we replace all known variables)
let rec expand vars expr = 
  // First recursively process & replace variables
  let expanded = 
    match expr with
    // If the variable has an assignment, then replace it with the expression
    | ExprShape.ShapeVar v when Map.containsKey v vars -> vars.[v]
    // Apply 'expand' recursively on all sub-expressions
    | ExprShape.ShapeVar v -> Expr.Var v
    | Patterns.Call(body, DerivedPatterns.MethodWithReflectedDefinition meth, args) ->
        let this = match body with Some b -> Expr.Application(meth, b) | _ -> meth
        let res = Expr.Applications(this, [ for a in args -> [a]])
        expand vars res
    | ExprShape.ShapeLambda(v, expr) -> 
        Expr.Lambda(v, expand vars expr)
    | ExprShape.ShapeCombination(o, exprs) ->
        ExprShape.RebuildShapeCombination(o, List.map (expand vars) exprs)
  // After expanding, try reducing the expression - we can replace 'let'
  // expressions and applications where the first argument is lambda
  match expanded with
  | Patterns.Application(ExprShape.ShapeLambda(v, body), assign)
  | Patterns.Let(v, assign, body) ->
      expand (Map.add v (expand vars assign) vars) body
  | _ -> expanded

: foo , , (10 + 2) * (10 + 2):

[<ReflectedDefinition>]
let foo a = a * a

expand Map.empty <@ foo (10 + 2) @>

EDIT: F #.

+7

All Articles