5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# File 'lib/hyper_trace/react_trace.rb', line 5
def hypertrace_exclusions
@@hypertrace_exclusions ||=
Tags::HTML_TAGS +
Tags::HTML_TAGS.collect { |t| t.upcase } +
[
:_render_wrapper, :params, :find_component, :lookup_const,
:update_react_js_state, :props_changed?,
:update_react_js_state2, :set_state, :original_component_did_mount,
:props, :reactive_record_link_to_enclosing_while_loading_container,
:reactive_record_link_set_while_loading_container_class,
:dom_node, :state, :run_callback, :initial_state, :set_state!,
:set_or_replace_state_or_prop, :original_component_did_update
]
end
|