~technomancy/antifennel

a39684f060277b6369f29a6f1426afcd541d54ac — Phil Hagelberg 1 year, 2 months ago 2c62bf4
Defensive copying really isn't necessary here.
1 files changed, 2 insertions(+), 2 deletions(-)

M anticompiler.fnl
M anticompiler.fnl => anticompiler.fnl +2 -2
@@ 268,8 268,8 @@
    (set target.computed false)
    (set target.property {:Kind :Identifier :name target.property.value})))

(fn member-function-declaration [member-expression f-ast]
  (doto (collect [k v (pairs f-ast)] k v)
(fn member-function-declaration [member-expression function-ast]
  (doto function-ast
    (tset :kind :FunctionDeclaration)
    (tset :id member-expression)))