SYMBOL INDEX (249 symbols across 83 files) FILE: examples/counter/actions/counter.js constant INCREMENT_COUNTER (line 1) | const INCREMENT_COUNTER = 'INCREMENT_COUNTER'; constant DECREMENT_COUNTER (line 2) | const DECREMENT_COUNTER = 'DECREMENT_COUNTER'; function increment (line 6) | function increment() { function decrement (line 12) | function decrement() { function autoIncrement (line 18) | function autoIncrement(delay = 10) { function incrementAsync (line 31) | function incrementAsync(delay = 1000) { FILE: examples/counter/components/Counter.js class Counter (line 4) | class Counter extends Component { method render (line 5) | render() { FILE: examples/counter/containers/App.js function mapStateToProps (line 6) | function mapStateToProps(state) { function mapDispatchToProps (line 12) | function mapDispatchToProps(dispatch) { FILE: examples/counter/reducers/counter.js function counter (line 3) | function counter(state = 0, action) { FILE: examples/counter/store/configureStore.js function configureStore (line 8) | function configureStore(preloadedState) { FILE: examples/counter/test/actions/counter.spec.js function mockStore (line 11) | function mockStore(getState, expectedActions, onLastAction) { FILE: examples/counter/test/components/Counter.spec.js function setup (line 6) | function setup() { FILE: examples/counter/test/containers/App.spec.js function setup (line 8) | function setup(initialState) { FILE: examples/react-counter-messaging/components/Counter.js class Counter (line 8) | class Counter extends Component { method constructor (line 9) | constructor() { method componentWillMount (line 17) | componentWillMount() { method componentWillUnmount (line 30) | componentWillUnmount() { method increment (line 37) | increment() { method decrement (line 43) | decrement() { method render (line 49) | render() { FILE: examples/router/actions/todos.js function addTodo (line 3) | function addTodo(text) { function deleteTodo (line 7) | function deleteTodo(id) { function editTodo (line 11) | function editTodo(id, text) { function completeTodo (line 15) | function completeTodo(id) { function completeAll (line 19) | function completeAll() { function clearCompleted (line 23) | function clearCompleted() { FILE: examples/router/components/Footer.js constant FILTER_TITLES (line 5) | const FILTER_TITLES = { class Footer (line 11) | class Footer extends Component { method renderTodoCount (line 12) | renderTodoCount() { method renderFilterLink (line 23) | renderFilterLink(filter) { method renderClearButton (line 36) | renderClearButton() { method render (line 48) | render() { FILE: examples/router/components/Header.js class Header (line 4) | class Header extends Component { method handleSave (line 5) | handleSave(text) { method render (line 11) | render() { FILE: examples/router/components/MainSection.js constant TODO_FILTERS (line 6) | const TODO_FILTERS = { class MainSection (line 12) | class MainSection extends Component { method constructor (line 13) | constructor(props, context) { method handleClearCompleted (line 18) | handleClearCompleted() { method handleShow (line 25) | handleShow(filter) { method renderToggleAll (line 29) | renderToggleAll(completedCount) { method renderFooter (line 41) | renderFooter(completedCount) { method render (line 57) | render() { FILE: examples/router/components/TodoItem.js class TodoItem (line 5) | class TodoItem extends Component { method constructor (line 6) | constructor(props, context) { method handleDoubleClick (line 13) | handleDoubleClick() { method handleSave (line 17) | handleSave(id, text) { method render (line 26) | render() { FILE: examples/router/components/TodoTextInput.js class TodoTextInput (line 4) | class TodoTextInput extends Component { method constructor (line 5) | constructor(props, context) { method handleSubmit (line 12) | handleSubmit(e) { method handleChange (line 22) | handleChange(e) { method handleBlur (line 26) | handleBlur(e) { method render (line 32) | render() { FILE: examples/router/constants/ActionTypes.js constant ADD_TODO (line 1) | const ADD_TODO = 'ADD_TODO'; constant DELETE_TODO (line 2) | const DELETE_TODO = 'DELETE_TODO'; constant EDIT_TODO (line 3) | const EDIT_TODO = 'EDIT_TODO'; constant COMPLETE_TODO (line 4) | const COMPLETE_TODO = 'COMPLETE_TODO'; constant COMPLETE_ALL (line 5) | const COMPLETE_ALL = 'COMPLETE_ALL'; constant CLEAR_COMPLETED (line 6) | const CLEAR_COMPLETED = 'CLEAR_COMPLETED'; FILE: examples/router/constants/TodoFilters.js constant SHOW_ALL (line 1) | const SHOW_ALL = 'show_all'; constant SHOW_COMPLETED (line 2) | const SHOW_COMPLETED = 'show_completed'; constant SHOW_ACTIVE (line 3) | const SHOW_ACTIVE = 'show_active'; FILE: examples/router/containers/App.js class App (line 8) | class App extends Component { method render (line 9) | render() { function mapStateToProps (line 25) | function mapStateToProps(state) { function mapDispatchToProps (line 32) | function mapDispatchToProps(dispatch) { FILE: examples/router/containers/Root.js class Root (line 8) | class Root extends Component { method render (line 9) | render() { FILE: examples/router/containers/Wrapper.js function mapDispatchToProps (line 8) | function mapDispatchToProps(dispatch) { class Wrapper (line 15) | @connect((state) => ({}), mapDispatchToProps) method constructor (line 21) | constructor(props) { method handleClick (line 26) | handleClick(event) { method render (line 43) | render() { FILE: examples/router/reducers/todos.js function todos (line 9) | function todos(state = initialState, action) { FILE: examples/router/store/configureStore.js function configureStore (line 7) | function configureStore(initialState) { FILE: examples/router/test/components/Footer.spec.js function setup (line 7) | function setup(propOverrides) { function getTextContent (line 26) | function getTextContent(elem) { FILE: examples/router/test/components/Header.spec.js function setup (line 7) | function setup() { FILE: examples/router/test/components/MainSection.spec.js function setup (line 9) | function setup(propOverrides) { FILE: examples/router/test/components/TodoItem.spec.js function setup (line 7) | function setup( editing = false ) { FILE: examples/router/test/components/TodoTextInput.spec.js function setup (line 6) | function setup(propOverrides) { FILE: examples/saga-counter/src/main.js function render (line 25) | function render() { FILE: examples/saga-counter/src/reducers/index.js function counter (line 1) | function counter(state = 0, action) { FILE: examples/todomvc/actions/todos.js function addTodo (line 3) | function addTodo(text) { function deleteTodo (line 7) | function deleteTodo(id) { function editTodo (line 11) | function editTodo(id, text) { function completeTodo (line 15) | function completeTodo(id) { function completeAll (line 19) | function completeAll() { function clearCompleted (line 23) | function clearCompleted() { FILE: examples/todomvc/components/Footer.js constant FILTER_TITLES (line 6) | const FILTER_TITLES = { class Footer (line 12) | class Footer extends Component { method renderTodoCount (line 13) | renderTodoCount() { method renderFilterLink (line 24) | renderFilterLink(filter) { method renderClearButton (line 37) | renderClearButton() { method render (line 49) | render() { FILE: examples/todomvc/components/Header.js class Header (line 5) | class Header extends Component { method handleSave (line 6) | handleSave(text) { method render (line 12) | render() { FILE: examples/todomvc/components/MainSection.js constant TODO_FILTERS (line 7) | const TODO_FILTERS = { class MainSection (line 13) | class MainSection extends Component { method constructor (line 14) | constructor(props, context) { method handleClearCompleted (line 19) | handleClearCompleted() { method handleShow (line 26) | handleShow(filter) { method renderToggleAll (line 30) | renderToggleAll(completedCount) { method renderFooter (line 42) | renderFooter(completedCount) { method render (line 58) | render() { FILE: examples/todomvc/components/TodoItem.js class TodoItem (line 6) | class TodoItem extends Component { method constructor (line 7) | constructor(props, context) { method handleDoubleClick (line 14) | handleDoubleClick() { method handleSave (line 18) | handleSave(id, text) { method render (line 27) | render() { FILE: examples/todomvc/components/TodoTextInput.js class TodoTextInput (line 5) | class TodoTextInput extends Component { method constructor (line 6) | constructor(props, context) { method handleSubmit (line 13) | handleSubmit(e) { method handleChange (line 23) | handleChange(e) { method handleBlur (line 27) | handleBlur(e) { method render (line 33) | render() { FILE: examples/todomvc/constants/ActionTypes.js constant ADD_TODO (line 1) | const ADD_TODO = 'ADD_TODO'; constant DELETE_TODO (line 2) | const DELETE_TODO = 'DELETE_TODO'; constant EDIT_TODO (line 3) | const EDIT_TODO = 'EDIT_TODO'; constant COMPLETE_TODO (line 4) | const COMPLETE_TODO = 'COMPLETE_TODO'; constant COMPLETE_ALL (line 5) | const COMPLETE_ALL = 'COMPLETE_ALL'; constant CLEAR_COMPLETED (line 6) | const CLEAR_COMPLETED = 'CLEAR_COMPLETED'; FILE: examples/todomvc/constants/TodoFilters.js constant SHOW_ALL (line 1) | const SHOW_ALL = 'show_all'; constant SHOW_COMPLETED (line 2) | const SHOW_COMPLETED = 'show_completed'; constant SHOW_ACTIVE (line 3) | const SHOW_ACTIVE = 'show_active'; FILE: examples/todomvc/containers/App.js class App (line 9) | class App extends Component { method render (line 10) | render() { function mapStateToProps (line 26) | function mapStateToProps(state) { function mapDispatchToProps (line 32) | function mapDispatchToProps(dispatch) { FILE: examples/todomvc/reducers/todos.js function todos (line 10) | function todos(state = initialState, action) { FILE: examples/todomvc/store/configureStore.js function configureStore (line 5) | function configureStore(preloadedState) { FILE: examples/todomvc/test/components/Footer.spec.js function setup (line 7) | function setup(propOverrides) { function getTextContent (line 26) | function getTextContent(elem) { FILE: examples/todomvc/test/components/Header.spec.js function setup (line 7) | function setup() { FILE: examples/todomvc/test/components/MainSection.spec.js function setup (line 9) | function setup(propOverrides) { FILE: examples/todomvc/test/components/TodoItem.spec.js function setup (line 7) | function setup( editing = false ) { FILE: examples/todomvc/test/components/TodoTextInput.spec.js function setup (line 6) | function setup(propOverrides) { FILE: gulpfile.babel.js function copy (line 14) | function copy(dest) { function webpackProcess (line 66) | function webpackProcess(config) { FILE: npm-package/index.d.ts type EnhancerOptions (line 3) | interface EnhancerOptions { FILE: npm-package/logOnly.js function enhancer (line 6) | function enhancer() { function composeWithEnhancer (line 33) | function composeWithEnhancer(config) { FILE: npm-package/utils/assign.js function assign (line 9) | function assign(obj, newKey, newValue) { FILE: src/app/api/filters.js function getLocalFilter (line 9) | function getLocalFilter(config) { function isFiltered (line 25) | function isFiltered(action, localFilter) { function filterActions (line 39) | function filterActions(actionsById, actionSanitizer) { function filterStates (line 46) | function filterStates(computedStates, stateSanitizer) { function filterState (line 53) | function filterState(state, type, localFilter, stateSanitizer, actionSan... function startingFrom (line 102) | function startingFrom( FILE: src/app/api/generateInstanceId.js function generateId (line 3) | function generateId(instanceId) { FILE: src/app/api/importState.js function deprecate (line 5) | function deprecate(param) { function importState (line 9) | function importState(state, { deserializeState, deserializeAction, seria... FILE: src/app/api/index.js function windowReplacer (line 12) | function windowReplacer(key, value) { function tryCatchStringify (line 19) | function tryCatchStringify(obj) { function stringify (line 31) | function stringify(obj, serialize) { function getSeralizeParameter (line 45) | function getSeralizeParameter(config, param) { function post (line 73) | function post(message) { function getStackTrace (line 77) | function getStackTrace(config, toExcludeFromTrace) { function amendActionType (line 106) | function amendActionType(action, config, toExcludeFromTrace) { function toContentScript (line 115) | function toContentScript(message, serializeState, serializeAction) { function sendMessage (line 134) | function sendMessage(action, state, config, instanceId, name) { function handleMessages (line 153) | function handleMessages(event) { function setListener (line 164) | function setListener(onMessage, instanceId) { function disconnect (line 183) | function disconnect() { function connect (line 188) | function connect(preConfig) { function updateStore (line 314) | function updateStore(stores) { function isInIframe (line 329) | function isInIframe() { FILE: src/app/api/notifyErrors.js function createExpBackoffTimer (line 4) | function createExpBackoffTimer(step) { function postError (line 21) | function postError(message) { function catchErrors (line 30) | function catchErrors(e) { function notifyErrors (line 39) | function notifyErrors(onError) { FILE: src/app/api/openWindow.js function openWindow (line 1) | function openWindow(position) { FILE: src/app/containers/App.js class App (line 29) | @enhance method render (line 42) | render() { function mapStateToProps (line 164) | function mapStateToProps(state) { function mapDispatchToProps (line 180) | function mapDispatchToProps(dispatch) { FILE: src/app/middlewares/api.js constant CONNECTED (line 8) | const CONNECTED = 'socket/CONNECTED'; constant DISCONNECTED (line 9) | const DISCONNECTED = 'socket/DISCONNECTED'; function toMonitors (line 21) | function toMonitors(action, tabId, verbose) { function toContentScript (line 32) | function toContentScript({ message, action, id, instanceId, state }) { function toAllTabs (line 41) | function toAllTabs(msg) { function monitorInstances (line 48) | function monitorInstances(shouldMonitor, id) { function getReducerError (line 59) | function getReducerError() { function togglePersist (line 67) | function togglePersist() { function messaging (line 79) | function messaging(request, sender, sendResponse) { function disconnect (line 155) | function disconnect(type, id, listener) { function onConnect (line 173) | function onConnect(port) { function api (line 241) | function api() { FILE: src/app/middlewares/instanceSelector.js function selectInstance (line 3) | function selectInstance(tabId, store, next) { function getCurrentTabId (line 12) | function getCurrentTabId(next) { function popupSelector (line 23) | function popupSelector(store) { FILE: src/app/middlewares/panelSync.js function panelDispatcher (line 4) | function panelDispatcher(bgConnection) { FILE: src/app/reducers/background/persistStates.js function persistStates (line 1) | function persistStates(state = false, action) { FILE: src/app/reducers/window/instances.js function instances (line 4) | function instances(state = initialState, action) { FILE: src/app/service/Monitor.js class Monitor (line 1) | class Monitor { method constructor (line 2) | constructor(update) { FILE: src/app/stores/backgroundStore.js function configureStore (line 5) | function configureStore(preloadedState) { FILE: src/app/stores/createStore.js function configureStore (line 3) | function configureStore(reducer, initialState, enhance) { FILE: src/app/stores/enhancerStore.js function getUrlParam (line 5) | function getUrlParam(key) { function configureStore (line 10) | function configureStore(next, monitorReducer, config) { FILE: src/app/stores/panelStore.js function configureStore (line 7) | function configureStore(position, bgConnection, preloadedState) { FILE: src/app/stores/windowStore.js function configureStore (line 10) | function configureStore(baseStore, position, preloadedState) { FILE: src/browser/extension/background/contextMenus.js function createMenu (line 3) | function createMenu() { function removeMenu (line 28) | function removeMenu() { FILE: src/browser/extension/background/getPreloadedState.js function getPreloadedState (line 8) | function getPreloadedState(position, cb) { FILE: src/browser/extension/background/logging.js function getReport (line 3) | function getReport(reportId, tabId, instanceId) { FILE: src/browser/extension/background/openWindow.js function openDevToolsWindow (line 4) | function openDevToolsWindow(position) { FILE: src/browser/extension/chromeAPIMock.js method addListener (line 15) | addListener() {} method addListener (line 18) | addListener() {} method addListener (line 24) | addListener() {} method create (line 26) | create() {} method clear (line 27) | clear() {} method addListener (line 31) | addListener() {} method set (line 45) | set(obj, callback) { method get (line 53) | get(obj, callback) { method remove (line 63) | remove(items, callback) { FILE: src/browser/extension/devpanel/index.js function renderDevTools (line 23) | function renderDevTools() { function renderNA (line 37) | function renderNA() { function init (line 70) | function init(id) { FILE: src/browser/extension/devtools/index.js function createPanel (line 1) | function createPanel(url) { FILE: src/browser/extension/inject/contentScript.js function connect (line 9) | function connect() { function handleDisconnect (line 44) | function handleDisconnect() { function tryCatch (line 50) | function tryCatch(fn, args) { function send (line 91) | function send(message) { function handleMessages (line 102) | function handleMessages(event) { FILE: src/browser/extension/inject/pageScript.js function deprecateParam (line 23) | function deprecateParam(oldParam, newParam) { function exportState (line 71) | function exportState() { function relay (line 84) | function relay(type, state, action, nextActionId, libConfig) { function dispatchRemotely (line 153) | function dispatchRemotely(action) { function importPayloadFrom (line 163) | function importPayloadFrom(state) { function dispatchMonitorAction (line 174) | function dispatchMonitorAction(action) { function onMessage (line 195) | function onMessage(message) { function init (line 260) | function init() { function handleChange (line 280) | function handleChange() { FILE: src/browser/extension/options/syncOptions.js function syncOptions (line 92) | function syncOptions(toAllTabs) { FILE: test/app/inject/enhancer.spec.js function counter (line 7) | function counter(state = 0, action) { FILE: test/electron/devpanel.spec.js function showReduxPanel (line 40) | function showReduxPanel() { FILE: test/electron/fixture/renderer.js constant INCREMENT_COUNTER (line 3) | const INCREMENT_COUNTER = 'INCREMENT_COUNTER'; constant DECREMENT_COUNTER (line 4) | const DECREMENT_COUNTER = 'DECREMENT_COUNTER'; FILE: test/perf/send.spec.js function test (line 7) | function test(title, data, maxTime = 100) { FILE: test/utils/inject.js function insertScript (line 1) | function insertScript(str) { function listenMessage (line 7) | function listenMessage(f) { FILE: webpack/replace/JsonpMainTemplate.runtime.js function webpackHotUpdateCallback (line 7) | function webpackHotUpdateCallback(chunkId, moreModules) { // eslint-disa... function evalCode (line 13) | function evalCode(code, context) { function hotDownloadManifest (line 28) | function hotDownloadManifest(callback) { // eslint-disable-line no-unuse...