(fn)
| 14 | |
| 15 | |
| 16 | def leaflet_method(fn): |
| 17 | @wraps(fn) |
| 18 | def inner(self, *args, **kwargs): |
| 19 | self.add_child(MethodCall(self, fn.__name__, *args, **kwargs)) |
| 20 | |
| 21 | return inner |
| 22 | |
| 23 | |
| 24 | class JSCSSMixin(MacroElement): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…