5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# File 'lib/sourcify/proc/methods/to_sexp.rb', line 5
def self.included(base)
base.class_eval do
ref_proc = lambda {}
if ref_proc.respond_to?(:to_sexp)
alias_method :__pre_sourcified_to_sexp, :to_sexp
def to_sexp(opts = {}, &body_matcher)
sexp, flag = __pre_sourcified_to_sexp, opts[:strip_enclosure]
Marshal.load(Marshal.dump( (@sourcified_sexps ||= {})[flag] ||=
flag ? Sexp.from_array(sexp.to_a.last) : sexp
))
end
else
Sourcify.require_rb('proc', 'parser')
def to_sexp(opts = {}, &body_matcher)
(@sourcified_parser ||= Parser.new(self)).
sexp(opts.merge(:body_matcher => body_matcher))
end
end
end
end
|