Skip to content

Instantly share code, notes, and snippets.

@vjeux
Created February 5, 2017 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vjeux/2bffa182383957bb0ef87966be40455a to your computer and use it in GitHub Desktop.
Save vjeux/2bffa182383957bb0ef87966be40455a to your computer and use it in GitHub Desktop.
../nuclide/pkg/commons-atom/ActiveEditorRegistry.js
../nuclide/pkg/commons-atom/arcanist.js
../nuclide/pkg/commons-atom/AutocompleteCacher.js
Index:
===================================================================
---
+++
@@ -15,7 +15,6 @@
shouldFilter?: (
lastRequest: atom$AutocompleteRequest,
- currentRequest: atom$AutocompleteRequest
- ) => // TODO pass originalResult here if any client requires it
- boolean
+ currentRequest: atom$AutocompleteRequest // TODO pass originalResult here if any client requires it
+ ) => boolean
|};
../nuclide/pkg/commons-atom/block-decorations.js
../nuclide/pkg/commons-atom/browser-cookies.js
../nuclide/pkg/commons-atom/consumeFirstProvider.js
../nuclide/pkg/commons-atom/ContextMenu.js
../nuclide/pkg/commons-atom/create-pane-container.js
../nuclide/pkg/commons-atom/createPackage.js
../nuclide/pkg/commons-atom/debounced.js
Index:
===================================================================
---
+++
@@ -54,8 +54,5 @@
): Observable<void> {
return observableFromSubscribeFunction(callback =>
- editor.onDidChange(
- callback
- ))// Debounce manually rather than using editor.onDidStopChanging so that the debounce time is
- // configurable.
+ editor.onDidChange(callback))// configurable. // Debounce manually rather than using editor.onDidStopChanging so that the debounce time is
.debounceTime(debounceInterval);
}
../nuclide/pkg/commons-atom/destroy-pane-item.js
../nuclide/pkg/commons-atom/file-type-class.js
../nuclide/pkg/commons-atom/featureConfig.js
../nuclide/pkg/commons-atom/format-enoent-notification.js
../nuclide/pkg/commons-atom/go-to-location.js
../nuclide/pkg/commons-atom/loading-notification.js
../nuclide/pkg/commons-atom/LocalStorageJsonTable.js
../nuclide/pkg/commons-atom/mouse-to-position.js
../nuclide/pkg/commons-atom/observe-element-dimensions.js
../nuclide/pkg/commons-atom/observe-grammar-for-text-editors.js
../nuclide/pkg/commons-atom/on-will-destroy-text-buffer.js
../nuclide/pkg/commons-atom/observe-language-text-editors.js
../nuclide/pkg/commons-atom/PanelRenderer.js
../nuclide/pkg/commons-atom/projects.js
../nuclide/pkg/commons-atom/ProviderRegistry.js
../nuclide/pkg/commons-atom/range.js
../nuclide/pkg/commons-atom/register-grammar.js
../nuclide/pkg/commons-atom/renderReactRoot.js
../nuclide/pkg/commons-atom/spec/AutocompleteCacher-spec.js
../nuclide/pkg/commons-atom/spec/ActiveEditorRegistry-spec.js
../nuclide/pkg/commons-atom/spec/browser-cookies.js
../nuclide/pkg/commons-atom/spec/ContextMenu-spec.js
../nuclide/pkg/commons-atom/spec/createPackage-spec.js
../nuclide/pkg/commons-atom/spec/debounced-spec.js
../nuclide/pkg/commons-atom/spec/featureConfig-spec.js
../nuclide/pkg/commons-atom/spec/format-enoent-notification-spec.js
../nuclide/pkg/commons-atom/spec/go-to-location-spec.js
../nuclide/pkg/commons-atom/spec/loading-notification-spec.js
../nuclide/pkg/commons-atom/spec/LocalStorageJsonTable-spec.js
../nuclide/pkg/commons-atom/spec/observe-grammar-for-text-editors-spec.js
../nuclide/pkg/commons-atom/spec/observe-language-text-editors-spec.js
../nuclide/pkg/commons-atom/spec/PanelRenderer-spec.js
../nuclide/pkg/commons-atom/spec/projects-spec.js
../nuclide/pkg/commons-atom/spec/ProviderRegistry-spec.js
../nuclide/pkg/commons-atom/spec/register-grammar-spec.js
../nuclide/pkg/commons-atom/spec/repositoryContainsPath-spec.js
../nuclide/pkg/commons-atom/spec/testHelpers-spec.js
../nuclide/pkg/commons-atom/spec/text-buffer-spec.js
../nuclide/pkg/commons-atom/spec/text-editor-spec.js
../nuclide/pkg/commons-atom/streamProcessToConsoleMessages.js
../nuclide/pkg/commons-atom/suda-tool-bar.js
../nuclide/pkg/commons-atom/sync-atom-commands.js
../nuclide/pkg/commons-atom/testHelpers.js
../nuclide/pkg/commons-atom/text-buffer.js
../nuclide/pkg/commons-atom/text-editor.js
../nuclide/pkg/commons-atom/ui-tree-path.js
../nuclide/pkg/commons-atom/vcs.js
Index:
===================================================================
---
+++
@@ -232,8 +232,7 @@
export function getHgRepositories(): Set<HgRepositoryClient> {
return new Set(
- (arrayCompact(
- atom.project.getRepositories()
- )// Flow doesn't understand that this filters to hg repositories only, so cast through `any`
- .filter(repository => repository.getType() === "hg"): Array<any>)
+ (arrayCompact(atom.project.getRepositories()).filter( // Flow doesn't understand that this filters to hg repositories only, so cast through `any`
+ repository => repository.getType() === "hg"
+ ): Array<any>)
);
}
../nuclide/pkg/commons-atom/viewableFromReactElement.js
../nuclide/pkg/commons-node/BatchProcessedQueue.js
../nuclide/pkg/commons-node/collection.js
../nuclide/pkg/commons-node/cache.js
../nuclide/pkg/commons-node/compareVersions.js
../nuclide/pkg/commons-node/ConfigCache.js
../nuclide/pkg/commons-node/debounce.js
../nuclide/pkg/commons-node/Dispatcher.js
../nuclide/pkg/commons-node/event.js
../nuclide/pkg/commons-node/fsPromise.js
../nuclide/pkg/commons-node/Hasher.js
../nuclide/pkg/commons-node/humanizeKeystroke.js
../nuclide/pkg/commons-node/nice.js
../nuclide/pkg/commons-node/memoizeUntilChanged.js
../nuclide/pkg/commons-node/nuclideUri.js
../nuclide/pkg/commons-node/observable.js
../nuclide/pkg/commons-node/once.js
../nuclide/pkg/commons-node/passesGK.js
../nuclide/pkg/commons-node/performanceNow.js
../nuclide/pkg/commons-node/process-rpc-types.js
../nuclide/pkg/commons-node/process.js
../nuclide/pkg/commons-node/promise-executors.js
../nuclide/pkg/commons-node/promise.js
../nuclide/pkg/commons-node/redux-observable.js
../nuclide/pkg/commons-node/range.js
../nuclide/pkg/commons-node/runtime-info.js
../nuclide/pkg/commons-node/scheduleIdleCallback.js
Index:
===================================================================
---
+++
@@ -23,7 +23,6 @@
import invariant from "assert";
-export default (global.requestIdleCallback
- ? // Using Browser API
- // Is guaranteed to resolve after `timeout` milliseconds.
+export default (global.requestIdleCallback // Using Browser API
+ ? // Is guaranteed to resolve after `timeout` milliseconds.
(function scheduleIdleCallback(
callback_: () => void,
@@ -61,7 +60,6 @@
}
};
- })
- : // Using Node API
- (function scheduleIdleCallback(
+ }) // Using Node API
+ : (function scheduleIdleCallback(
callback: () => void,
options?: {
../nuclide/pkg/commons-node/SharedObservableCache.js
../nuclide/pkg/commons-node/ScribeProcess.js
../nuclide/pkg/commons-node/SimpleModel.js
../nuclide/pkg/commons-node/singleton.js
../nuclide/pkg/commons-node/spec/BatchProcessedQueue-spec.js
../nuclide/pkg/commons-node/spec/cache-spec.js
../nuclide/pkg/commons-node/spec/collection-spec.js
../nuclide/pkg/commons-node/spec/compareVersions-spec.js
../nuclide/pkg/commons-node/spec/debounce-spec.js
../nuclide/pkg/commons-node/spec/ConfigCache-spec.js
../nuclide/pkg/commons-node/spec/Dispatcher-spec.js
../nuclide/pkg/commons-node/spec/event-spec.js
../nuclide/pkg/commons-node/spec/fixtures/throw.js
../nuclide/pkg/commons-node/spec/fsPromise-spec.js
../nuclide/pkg/commons-node/spec/Hasher-spec.js
../nuclide/pkg/commons-node/spec/humanizeKeystroke-spec.js
../nuclide/pkg/commons-node/spec/memoizeUntilChanged-spec.js
../nuclide/pkg/commons-node/spec/nice-spec.js
../nuclide/pkg/commons-node/spec/nuclideUri-spec.js
../nuclide/pkg/commons-node/spec/observable-spec.js
../nuclide/pkg/commons-node/spec/once-spec.js
../nuclide/pkg/commons-node/spec/process-spec.js
../nuclide/pkg/commons-node/spec/promise-executors-spec.js
../nuclide/pkg/commons-node/spec/promise-spec.js
../nuclide/pkg/commons-node/spec/scheduleIdleCallback-spec.js
../nuclide/pkg/commons-node/spec/ScribeProcess-spec.js
../nuclide/pkg/commons-node/spec/SharedObservableCache-spec.js
../nuclide/pkg/commons-node/spec/SimpleModel-spec.js
../nuclide/pkg/commons-node/spec/singleton-spec.js
../nuclide/pkg/commons-node/spec/stream-spec.js
../nuclide/pkg/commons-node/spec/string-spec.js
../nuclide/pkg/commons-node/spec/tasks-spec.js
../nuclide/pkg/commons-node/spec/UniversalDisposable-spec.js
../nuclide/pkg/commons-node/spec/which-spec.js
../nuclide/pkg/commons-node/spec/wootr-spec.js
../nuclide/pkg/commons-node/spec/xfetch-spec.js
../nuclide/pkg/commons-node/stream.js
../nuclide/pkg/commons-node/system-info.js
../nuclide/pkg/commons-node/string.js
../nuclide/pkg/commons-node/tasks.js
../nuclide/pkg/commons-node/tokenizedText-rpc-types.js
../nuclide/pkg/commons-node/tokenizedText.js
../nuclide/pkg/commons-node/which.js
../nuclide/pkg/commons-node/UniversalDisposable.js
../nuclide/pkg/commons-node/wootr.js
../nuclide/pkg/commons-node/xfetch.js
../nuclide/pkg/hyperclick/lib/hyperclick-utils.js
../nuclide/pkg/hyperclick/lib/Hyperclick.js
../nuclide/pkg/hyperclick/lib/HyperclickForTextEditor.js
../nuclide/pkg/hyperclick/lib/main.js
../nuclide/pkg/hyperclick/lib/SuggestionList.js
../nuclide/pkg/hyperclick/lib/SuggestionListElement.js
../nuclide/pkg/hyperclick/lib/types.js
../nuclide/pkg/hyperclick/spec/Hyperclick-spec.js
../nuclide/pkg/nuclide-adb-logcat/lib/Activation.js
Index:
===================================================================
---
+++
@@ -26,6 +26,5 @@
constructor(state: ?Object) {
const message$ = Observable.defer(() => createMessageStream(
- createProcessStream()// Retry 3 times (unless we get a ENOENT)
- .retryWhen(errors => errors.scan(
+ createProcessStream().retryWhen(errors => errors.scan( // Retry 3 times (unless we get a ENOENT)
(errCount, err) => {
if (isNoEntError(err) || errCount >= 2) {
../nuclide/pkg/nuclide-adb-logcat/lib/createMessage.js
../nuclide/pkg/nuclide-adb-logcat/lib/createMessageStream.js
../nuclide/pkg/nuclide-adb-logcat/lib/createProcessStream.js
../nuclide/pkg/nuclide-adb-logcat/lib/main.js
../nuclide/pkg/nuclide-adb-logcat/lib/parseLogcatMetadata.js
../nuclide/pkg/nuclide-adb-logcat/lib/types.js
../nuclide/pkg/nuclide-adb-logcat/spec/createMessageStream-spec.js
../nuclide/pkg/nuclide-adb-logcat/spec/parseLogcatMetadata-spec.js
../nuclide/pkg/nuclide-adb-rpc/lib/ADB.js
../nuclide/pkg/nuclide-adb-rpc/lib/AdbService.js
../nuclide/pkg/nuclide-analytics/lib/AnalyticsBatcher.js
../nuclide/pkg/nuclide-analytics/lib/analytics.js
../nuclide/pkg/nuclide-analytics/lib/HistogramTracker.js
../nuclide/pkg/nuclide-analytics/lib/main.js
../nuclide/pkg/nuclide-analytics/lib/track.js
../nuclide/pkg/nuclide-analytics/spec/AnalyticsBatcher-spec.js
../nuclide/pkg/nuclide-analytics/spec/HistogramTracker-spec.js
../nuclide/pkg/nuclide-analytics/spec/track-spec.js
../nuclide/pkg/nuclide-arcanist/lib/ArcanistDiagnosticsProvider.js
../nuclide/pkg/nuclide-arcanist/lib/ArcBuildSystem.js
../nuclide/pkg/nuclide-arcanist/lib/ArcToolbarModel.js
../nuclide/pkg/nuclide-arcanist/lib/ArcToolbarSection.js
../nuclide/pkg/nuclide-arcanist/lib/getMatchingProjects.js
../nuclide/pkg/nuclide-arcanist/lib/main.js
../nuclide/pkg/nuclide-arcanist/lib/openArcDeepLink.js
../nuclide/pkg/nuclide-arcanist/lib/tryReopenProject.js
../nuclide/pkg/nuclide-arcanist/lib/ui/createExtraUiComponent.js
../nuclide/pkg/nuclide-arcanist/spec/ArcanistDiagnosticsProvider-spec.js
../nuclide/pkg/nuclide-arcanist-rpc/lib/ArcanistService.js
../nuclide/pkg/nuclide-arcanist-rpc/lib/utils.js
../nuclide/pkg/nuclide-arcanist-rpc/spec/arcanist-base-spec.js
../nuclide/pkg/nuclide-arcanist-rpc/spec/utils-spec.js
../nuclide/pkg/nuclide-atom-notifications/lib/main.js
../nuclide/pkg/nuclide-atom-script/lib/test-runner.js
../nuclide/pkg/nuclide-atom-script/lib/types.js
../nuclide/pkg/nuclide-atom-script/lib/test-runner-entry.js
../nuclide/pkg/nuclide-atom-script/samples/echo.js
../nuclide/pkg/nuclide-atom-script/samples/markdown.js
../nuclide/pkg/nuclide-atom-script/samples/run-package-specs.js
../nuclide/pkg/nuclide-atom-script/samples/keybindings.js
../nuclide/pkg/nuclide-atom-script/samples/versions.js
../nuclide/pkg/nuclide-blame/lib/BlameGutter.js
../nuclide/pkg/nuclide-blame/lib/main.js
../nuclide/pkg/nuclide-blame/lib/types.js
../nuclide/pkg/nuclide-blame-provider-hg/lib/common.js
../nuclide/pkg/nuclide-blame-provider-hg/lib/HgBlameProvider.js
../nuclide/pkg/nuclide-blame-provider-hg/lib/main.js
../nuclide/pkg/nuclide-bookshelf/lib/accumulateState.js
../nuclide/pkg/nuclide-bookshelf/lib/applyActionMiddleware.js
../nuclide/pkg/nuclide-bookshelf/lib/Commands.js
../nuclide/pkg/nuclide-bookshelf/lib/constants.js
../nuclide/pkg/nuclide-bookshelf/lib/main.js
../nuclide/pkg/nuclide-bookshelf/lib/types.js
../nuclide/pkg/nuclide-bookshelf/spec/accumulateState-spec.js
../nuclide/pkg/nuclide-bookshelf/lib/utils.js
../nuclide/pkg/nuclide-bookshelf/spec/applyActionMiddleware-spec.js
../nuclide/pkg/nuclide-bookshelf/spec/dummy.js
../nuclide/pkg/nuclide-bookshelf/spec/utils-spec.js
../nuclide/pkg/nuclide-buck/lib/BuckBuildSystem.js
Index:
===================================================================
---
+++
@@ -272,6 +272,5 @@
actions,
store
- )// Log errors and continue.
- .catch((err, stream) => {
+ ).catch((err, stream) => { // Log errors and continue.
getLogger().error(err);
return stream;
../nuclide/pkg/nuclide-buck/lib/BuckEventStream.js
../nuclide/pkg/nuclide-buck/lib/BuckToolbar.js
../nuclide/pkg/nuclide-buck/lib/DeployEventStream.js
../nuclide/pkg/nuclide-buck/lib/DiagnosticsParser.js
../nuclide/pkg/nuclide-buck/lib/HyperclickProvider.js
../nuclide/pkg/nuclide-buck/lib/main.js
../nuclide/pkg/nuclide-buck/lib/observeBuildCommands.js
../nuclide/pkg/nuclide-buck/lib/PlatformService.js
../nuclide/pkg/nuclide-buck/lib/redux/Actions.js
Index:
===================================================================
---
+++
@@ -27,7 +27,6 @@
type: "SET_TASK_SETTINGS",
settings: TaskSettings
- |}
- | // The actions below are meant to be used in Epics only.
- {|
+ |} // The actions below are meant to be used in Epics only.
+ | {|
type: "SET_BUCK_ROOT",
buckRoot: ?string
../nuclide/pkg/nuclide-buck/lib/redux/Epics.js
../nuclide/pkg/nuclide-buck/lib/redux/Reducers.js
../nuclide/pkg/nuclide-buck/lib/types.js
../nuclide/pkg/nuclide-buck/lib/ui/BuckToolbarSettings.js
../nuclide/pkg/nuclide-buck/lib/ui/BuckToolbarTargetSelector.js
../nuclide/pkg/nuclide-buck/spec/BuckBuildSystem-spec.js
../nuclide/pkg/nuclide-buck/spec/BuckEventStream-spec.js
../nuclide/pkg/nuclide-buck/spec/DiagnosticsParser-spec.js
../nuclide/pkg/nuclide-buck/spec/Epics-spec.js
../nuclide/pkg/nuclide-buck/spec/HyperclickProvider-spec.js
../nuclide/pkg/nuclide-buck-base/lib/main.js
../nuclide/pkg/nuclide-buck-ios/lib/main.js
../nuclide/pkg/nuclide-buck-rpc/lib/BuckService.js
../nuclide/pkg/nuclide-buck-rpc/lib/createBuckWebSocket.js
../nuclide/pkg/nuclide-buck-rpc/spec/BuckService-spec.js
../nuclide/pkg/nuclide-busy-signal/lib/BusySignalProviderBase.js
../nuclide/pkg/nuclide-busy-signal/lib/DedupedBusySignalProviderBase.js
../nuclide/pkg/nuclide-busy-signal/lib/main.js
../nuclide/pkg/nuclide-busy-signal/lib/MessageStore.js
../nuclide/pkg/nuclide-busy-signal/lib/StatusBarTile.js
../nuclide/pkg/nuclide-busy-signal/lib/StatusBarTileComponent.js
../nuclide/pkg/nuclide-busy-signal/lib/types.js
../nuclide/pkg/nuclide-busy-signal/spec/BusySignalProviderBase-spec.js
../nuclide/pkg/nuclide-busy-signal/spec/DedupedBusySignalProviderBase-spec.js
../nuclide/pkg/nuclide-busy-signal/spec/MessageStore-spec.js
../nuclide/pkg/nuclide-clang/lib/AutocompleteHelpers.js
../nuclide/pkg/nuclide-clang/lib/ClangLinter.js
../nuclide/pkg/nuclide-clang/lib/CodeFormatHelpers.js
../nuclide/pkg/nuclide-clang/lib/constants.js
../nuclide/pkg/nuclide-clang/lib/DefinitionHelpers.js
../nuclide/pkg/nuclide-clang/lib/findWholeRangeOfSymbol.js
../nuclide/pkg/nuclide-clang/lib/libclang.js
../nuclide/pkg/nuclide-clang/lib/main.js
../nuclide/pkg/nuclide-clang/lib/Refactoring.js
../nuclide/pkg/nuclide-clang/lib/OutlineViewHelpers.js
../nuclide/pkg/nuclide-clang/lib/TypeHintHelpers.js
../nuclide/pkg/nuclide-clang/spec/AutocompleteHelpers-spec.js
../nuclide/pkg/nuclide-clang/spec/ClangLinter-spec.js
../nuclide/pkg/nuclide-clang/spec/findWholeRangeOfSymbol-spec.js
../nuclide/pkg/nuclide-clang/spec/OutlineViewHelpers-spec.js
../nuclide/pkg/nuclide-clang/spec/Refactoring-spec.js
../nuclide/pkg/nuclide-clang/spec/TypeHintHelpers-spec.js
../nuclide/pkg/nuclide-clang-rpc/lib/ClangFlagsManager.js
../nuclide/pkg/nuclide-clang-rpc/lib/ClangProcessService.js
../nuclide/pkg/nuclide-clang-rpc/lib/ClangServer.js
../nuclide/pkg/nuclide-clang-rpc/lib/ClangServerManager.js
../nuclide/pkg/nuclide-clang-rpc/lib/ClangService.js
../nuclide/pkg/nuclide-clang-rpc/lib/find-clang-server-args.js
../nuclide/pkg/nuclide-clang-rpc/lib/rpc-types.js
../nuclide/pkg/nuclide-clang-rpc/lib/utils.js
../nuclide/pkg/nuclide-clang-rpc/spec/ClangFlagsManager-spec.js
../nuclide/pkg/nuclide-clang-rpc/spec/ClangServer-outline-spec.js
../nuclide/pkg/nuclide-clang-rpc/spec/ClangServer-spec.js
../nuclide/pkg/nuclide-clang-rpc/spec/ClangServerManager-spec.js
../nuclide/pkg/nuclide-clang-rpc/spec/ClangService-spec.js
../nuclide/pkg/nuclide-clang-rpc/spec/utils-spec.js
../nuclide/pkg/nuclide-clipboard-path/lib/main.js
../nuclide/pkg/nuclide-code-format/lib/CodeFormatManager.js
../nuclide/pkg/nuclide-code-format/lib/config.js
../nuclide/pkg/nuclide-code-format/lib/main.js
../nuclide/pkg/nuclide-code-highlight/lib/CodeHighlightManager.js
../nuclide/pkg/nuclide-code-format/lib/types.js
../nuclide/pkg/nuclide-code-highlight/lib/main.js
../nuclide/pkg/nuclide-code-highlight/lib/types.js
../nuclide/pkg/nuclide-console/lib/getCurrentExecutorId.js
../nuclide/pkg/nuclide-console/lib/LogTailer.js
Index:
===================================================================
---
+++
@@ -74,7 +74,6 @@
const messages = options.messages.share();
this._ready = options.ready == null
- ? null
- : // Guard against a never-ending ready stream.
- // $FlowFixMe: Add `materialize()` to Rx defs
+ ? null // Guard against a never-ending ready stream.
+ : // $FlowFixMe: Add `materialize()` to Rx defs
options.ready.takeUntil(messages.materialize().takeLast(1));
this._runningCallbacks = [];
../nuclide/pkg/nuclide-console/lib/main.js
../nuclide/pkg/nuclide-console/lib/redux/Actions.js
../nuclide/pkg/nuclide-console/lib/redux/Epics.js
Index:
===================================================================
---
+++
@@ -66,6 +66,5 @@
scopeName: executor.scopeName
})
- )// Execute the code as a side-effect.
- .finally(() => {
+ ).finally(() => { // Execute the code as a side-effect.
executor.send(code);
});
../nuclide/pkg/nuclide-console/lib/redux/Reducers.js
../nuclide/pkg/nuclide-console/lib/types.js
../nuclide/pkg/nuclide-console/lib/ui/Console.js
../nuclide/pkg/nuclide-console/lib/ui/ConsoleContainer.js
../nuclide/pkg/nuclide-console/lib/ui/ConsoleHeader.js
../nuclide/pkg/nuclide-console/lib/ui/InputArea.js
../nuclide/pkg/nuclide-console/lib/ui/FunnelIcon.js
../nuclide/pkg/nuclide-console/lib/ui/OutputTable.js
../nuclide/pkg/nuclide-console/lib/ui/PromptButton.js
../nuclide/pkg/nuclide-console/lib/ui/RecordView.js
../nuclide/pkg/nuclide-console/lib/ui/UnseenMessagesNotification.js
Index:
===================================================================
---
+++
@@ -35,4 +35,5 @@
/>
+
New Messages
</div>
../nuclide/pkg/nuclide-console/spec/Epics-spec.js
../nuclide/pkg/nuclide-console/spec/getCurrentExecutorId-spec.js
../nuclide/pkg/nuclide-console/spec/LogTailer-spec.js
../nuclide/pkg/nuclide-console/spec/Reducers-spec.js
../nuclide/pkg/nuclide-context-view/lib/ContextViewManager.js
../nuclide/pkg/nuclide-context-view/lib/ContextViewMessage.js
../nuclide/pkg/nuclide-context-view/lib/ContextViewPanel.js
../nuclide/pkg/nuclide-context-view/lib/NoProvidersView.js
../nuclide/pkg/nuclide-context-view/lib/main.js
../nuclide/pkg/nuclide-context-view/lib/ProviderContainer.js
../nuclide/pkg/nuclide-context-view/lib/types.js
../nuclide/pkg/nuclide-context-view/spec/ContextViewManager-spec.js
../nuclide/pkg/nuclide-ctags/lib/HyperclickHelpers.js
../nuclide/pkg/nuclide-ctags/lib/main.js
../nuclide/pkg/nuclide-ctags/lib/QuickOpenHelpers.js
../nuclide/pkg/nuclide-ctags/spec/QuickOpenHelpers-spec.js
../nuclide/pkg/nuclide-ctags/lib/utils.js
../nuclide/pkg/nuclide-ctags/spec/HyperclickHelpers-spec.js
../nuclide/pkg/nuclide-ctags-rpc/lib/CtagsService.js
../nuclide/pkg/nuclide-ctags-rpc/spec/CtagsService-spec.js
../nuclide/pkg/nuclide-ctags-rpc/VendorLib/ctags-prebuilt/lib/ctags.js
../nuclide/pkg/nuclide-current-working-directory/lib/Activation.js
../nuclide/pkg/nuclide-ctags-rpc/VendorLib/ctags-prebuilt/lib/readable.js
../nuclide/pkg/nuclide-current-working-directory/lib/CwdApi.js
../nuclide/pkg/nuclide-current-working-directory/lib/main.js
../nuclide/pkg/nuclide-current-working-directory/spec/CwdApi-spec.js
../nuclide/pkg/nuclide-datatip/lib/DatatipComponent.js
../nuclide/pkg/nuclide-datatip/lib/DatatipManager.js
../nuclide/pkg/nuclide-datatip/lib/main.js
../nuclide/pkg/nuclide-datatip/lib/PinnedDatatip.js
../nuclide/pkg/nuclide-datatip/lib/types.js
../nuclide/pkg/nuclide-debugger/lib/AnalyticsHelper.js
../nuclide/pkg/nuclide-debugger/lib/BreakpointDisplayController.js
../nuclide/pkg/nuclide-debugger/lib/BreakpointListComponent.js
../nuclide/pkg/nuclide-debugger/lib/BreakpointManager.js
../nuclide/pkg/nuclide-debugger/lib/BreakpointStore.js
../nuclide/pkg/nuclide-debugger/lib/Bridge.js
../nuclide/pkg/nuclide-debugger/lib/CallstackStore.js
../nuclide/pkg/nuclide-debugger/lib/ChromeActionRegistryActions.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerActions.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerActionsStore.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerCallstackComponent.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerControllerView.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerDatatip.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerDatatipComponent.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerDispatcher.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerInspector.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerLaunchAttachUI.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerModel.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerPauseController.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerProviderStore.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerSettings.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerSteppingComponent.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerStore.js
../nuclide/pkg/nuclide-debugger/lib/DebuggerThreadsComponent.js
../nuclide/pkg/nuclide-debugger/lib/main.js
../nuclide/pkg/nuclide-debugger/lib/NewDebuggerView.js
../nuclide/pkg/nuclide-debugger/lib/normalizeRemoteObjectValue.js
../nuclide/pkg/nuclide-debugger/lib/RemoteControlService.js
../nuclide/pkg/nuclide-debugger/lib/ScopesComponent.js
../nuclide/pkg/nuclide-debugger/lib/ScopesStore.js
../nuclide/pkg/nuclide-debugger/lib/ThreadStore.js
../nuclide/pkg/nuclide-debugger/lib/types.js
../nuclide/pkg/nuclide-debugger/lib/WatchExpressionComponent.js
../nuclide/pkg/nuclide-debugger/lib/WatchExpressionListStore.js
../nuclide/pkg/nuclide-debugger/lib/WatchExpressionStore.js
../nuclide/pkg/nuclide-debugger/lib/WebInspector.js
../nuclide/pkg/nuclide-debugger/scripts/App.js
../nuclide/pkg/nuclide-debugger/scripts/nuclide_bridge/Emitter.js
../nuclide/pkg/nuclide-debugger/scripts/nuclide_bridge/Main.js
../nuclide/pkg/nuclide-debugger/scripts/nuclide_bridge/NuclideAppProvider.js
../nuclide/pkg/nuclide-debugger/scripts/nuclide_bridge/NuclideBridge.js
Index:
===================================================================
---
+++
@@ -397,5 +397,6 @@
return;
}
- runtimeAgent.getProperties(objectId, false, false, false, ( // ownProperties // accessorPropertiesOnly // generatePreview
+ runtimeAgent.getProperties(objectId, false, false, false, (
+ // ownProperties // accessorPropertiesOnly // generatePreview
error,
properties,
../nuclide/pkg/nuclide-debugger/scripts/nuclide_bridge/ThreadsWindowPane.js
../nuclide/pkg/nuclide-debugger/scripts/nuclide_bridge/UnresolvedBreakpointsSidebarPane.js
../nuclide/pkg/nuclide-debugger/spec/BreakpointDisplayControllerTest-spec.js
../nuclide/pkg/nuclide-debugger/spec/BreakpointManager-spec.js
../nuclide/pkg/nuclide-debugger/spec/Bridge-spec.js
../nuclide/pkg/nuclide-debugger/spec/normalizeRemoteObjectValue-spec.js
../nuclide/pkg/nuclide-debugger/spec/utils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/BlackboxSupport.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/CompilerScriptMapping.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/BreakpointManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/ContentScriptProjectDecorator.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/ContentProviderBasedProjectDelegate.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/CSSWorkspaceBinding.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/DebuggerWorkspaceBinding.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/DefaultScriptMapping.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/FileUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/FileSystemWorkspaceBinding.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/LiveLocation.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/Linkifier.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/NetworkMapping.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/NetworkProject.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/PresentationConsoleMessageHelper.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/ResourceUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/ResourceScriptMapping.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/SASSSourceMapping.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/StylesSourceMapping.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/WorkspaceController.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/TempFile.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/clike.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/closebrackets.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/coffeescript.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/css.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/headlesscodemirror.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/comment.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/htmlembedded.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/htmlmixed.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/markselection.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/matchbrackets.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/codemirror.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/javascript.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/overlay.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/shell.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/xml.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Console.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/php.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/python.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Color.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/ContentProvider.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Geometry.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/ModuleExtensionInterfaces.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Object.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/NotificationService.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/ParsedURL.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Progress.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/ResourceType.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Settings.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/StaticContentProvider.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Streams.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/TestBase.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/TextDictionary.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/TextRange.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Throttler.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/TextUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/UIString.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/WorkerRuntime.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/WebInspector.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/BreakpointsSidebarPaneBase.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/DebuggerPresentationUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/DockController.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/DOMBreakpointsSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/DOMPresentationUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/Drawer.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/ExecutionContextSelector.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/HandlerRegistry.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/InspectElementModeController.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/InspectorView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/ObjectPopoverHelper.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/RemoteObjectPreviewFormatter.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/console/ConsolePanel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/ObjectPropertiesSection.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/ShortcutsScreen.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionAPI.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionAuditCategory.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionPanel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionRegistryStub.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/console/CustomPreviewSection.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/console/ConsoleViewMessage.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/console/ConsoleView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionServer.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/host/UserMetrics.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/host/InspectorFrontendHost.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/host/Platform.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/inspector.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/HelpScreenUntilReload.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/AdvancedApp.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/OverlayController.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/Main.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/RenderingOptions.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/SimpleApp.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/OverridesView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/TestController.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/Tests.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/platform/DOMExtension.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/platform/utilities.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/Runtime.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/AccessibilityModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/AnimationModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/ApplicationCacheModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/ConsoleModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/ContentProviders.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/CookieParser.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/CPUProfileDataModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/CPUProfilerModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/CSSParser.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/CSSMetadata.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/Database.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/DOMStorage.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/FileSystemModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/DebuggerModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/CSSStyleModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/DOMModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/HAREntry.js
Index:
===================================================================
---
+++
@@ -122,4 +122,5 @@
this._request.mimeType || "x-unknown"
)
+
// text: this._request.content // TODO: pull out into a boolean flag, as content can be huge (and needs to be requested with an async call)
};
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/HeapProfilerModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/IndexedDBModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/NetworkLog.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/InspectorBackend.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/LayerTreeModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/NetworkManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/NetworkRequest.js
Index:
===================================================================
---
+++
@@ -757,6 +757,8 @@
function parseNameValue(pair) {
var position = pair.indexOf("=");
- if (position === -1) return { name: pair, value: "" };
- else return {
+ if (position === -1)
+ return { name: pair, value: "" };
+ else
+ return {
name: pair.substring(0, position),
value: pair.substring(position + 1)
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/OverridesSupport.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/PaintProfiler.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/Resource.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/RemoteObject.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/RuntimeModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/Script.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/ResourceTreeModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/ServiceWorkerCacheModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/ServiceWorkerManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/SourceMap.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/Target.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/ThreadStore.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/TracingManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/TracingModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/snippets/ScriptSnippetModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/WorkerManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/CodeMirrorDictionary.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/snippets/SnippetStorage.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/FontView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/CodeMirrorTextEditor.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/CodeMirrorUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/GoToLineDialog.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/ImageView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/ResourceSourceFrame.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/AddSourceMapURLDialog.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/SourceFrame.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/TextEditorAutocompleteController.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/AdvancedSearchView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/AsyncOperationsSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/CallStackSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/CSSSourceFrame.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/EditingLocationHistoryManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/FilePathScoreFunction.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/FileBasedSearchResultsPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/InplaceFormatterEditorAction.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/JavaScriptBreakpointsSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/JavaScriptCompiler.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/FilteredItemSelectionDialog.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/jsdifflib.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/NavigatorView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/RevisionHistoryView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/JavaScriptSourceFrame.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/ScopeChainSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/ScriptFormatter.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/ServiceWorkersSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/ScriptFormatterEditorAction.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/SimpleHistoryManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/SourcesNavigator.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/SourcesPanel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/SourcesSearchScope.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/StyleSheetOutlineDialog.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/ThreadsSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/SourcesView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/TabbedEditorContainer.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/UIList.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/UISourceCodeFrame.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/WatchExpressionsSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/WorkspaceMappingTip.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/XHRBreakpointsSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/toolbox/EmulatedDevices.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/toolbox/InspectedPagePlaceholder.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/toolbox/MediaQueryInspector.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/toolbox/OverridesUI.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/toolbox/ResponsiveDesignView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/toolbox_bootstrap/Toolbox.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ActionRegistry.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ColorSwatch.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/Context.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ContextMenu.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/Dialog.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/DOMSyntaxHighlighter.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/DropDownMenu.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/DropTarget.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/EmptyView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/FilterBar.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ForwardedInputEventHandler.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/HelpScreen.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/HistoryInput.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/InplaceEditor.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/KeyboardShortcut.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/Popover.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/Panel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ResizerWidget.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/RootView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/Section.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ProgressIndicator.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/SearchableView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/SettingsUI.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ShortcutRegistry.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/SidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/SidebarTreeElement.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/SoftContextMenu.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/SplitView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/StackView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/SuggestBox.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/StatusBar.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/TabbedPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/TextPrompt.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/treeoutline.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ZoomManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/UIUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/View.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ViewportControl.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui_lazy/FlameChart.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui_lazy/DataGrid.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui_lazy/OverviewGrid.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui_lazy/PieChart.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui_lazy/ShowMoreDataGridNode.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui_lazy/SortableDataGrid.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui_lazy/ViewportDataGrid.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui_lazy/TimelineGrid.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/FileManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/ExcludedFolderManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/FileSystemMapping.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/SearchConfig.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/IsolatedFileSystemManager.js
../nuclide/pkg/nuclide-debugger-base/lib/ChromeMessageRemoting.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/IsolatedFileSystem.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/UISourceCode.js
../nuclide/pkg/nuclide-debugger-base/lib/AtomServiceContainer.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/Workspace.js
../nuclide/pkg/nuclide-debugger-base/lib/DebuggerProcessInfo.js
../nuclide/pkg/nuclide-debugger-base/lib/DebuggerLaunchAttachProvider.js
../nuclide/pkg/nuclide-debugger-base/lib/DebuggerInstance.js
../nuclide/pkg/nuclide-debugger-base/lib/DebuggerRpcServiceBase.js
../nuclide/pkg/nuclide-debugger-base/lib/LaunchAttachActionsBase.js
../nuclide/pkg/nuclide-debugger-base/lib/main.js
../nuclide/pkg/nuclide-debugger-base/spec/ChromeMessageRemoting-spec.js
../nuclide/pkg/nuclide-debugger-common/lib/main.js
../nuclide/pkg/nuclide-debugger-common/lib/DebuggerRpcServiceBase.js
../nuclide/pkg/nuclide-debugger-common/lib/ClientCallback.js
../nuclide/pkg/nuclide-debugger-common/lib/WebSocketServer.js
../nuclide/pkg/nuclide-debugger-interfaces/rpc-types.js
../nuclide/pkg/nuclide-debugger-interfaces/service.js
../nuclide/pkg/nuclide-debugger-iwdp/lib/AttachProcessInfo.js
../nuclide/pkg/nuclide-debugger-iwdp/lib/AttachUiComponent.js
../nuclide/pkg/nuclide-debugger-iwdp/lib/logger.js
../nuclide/pkg/nuclide-debugger-iwdp/lib/IwdpLaunchAttachProvider.js
../nuclide/pkg/nuclide-debugger-iwdp/lib/main.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/BreakpointManager.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/ConnectionMultiplexer.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/connectToPackager.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/connectToIwdp.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/constants.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/createWebSocketListener.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/DebuggerConnection.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/FileCache.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/IwdpDebuggerService.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/logger.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/prelude.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/types.js
../nuclide/pkg/nuclide-debugger-native/lib/actions/AttachActionUIProvider.js
../nuclide/pkg/nuclide-debugger-native/lib/actions/LaunchActionUIProvider.js
../nuclide/pkg/nuclide-debugger-native/lib/actions/DebuggerActionUIProvider.js
../nuclide/pkg/nuclide-debugger-native/lib/AttachProcessInfo.js
../nuclide/pkg/nuclide-debugger-native/lib/AttachUIComponent.js
../nuclide/pkg/nuclide-debugger-native/lib/BootstrapInfo.js
../nuclide/pkg/nuclide-debugger-native/lib/LaunchAttachDispatcher.js
../nuclide/pkg/nuclide-debugger-native/lib/LaunchAttachActions.js
../nuclide/pkg/nuclide-debugger-native/lib/LaunchProcessInfo.js
../nuclide/pkg/nuclide-debugger-native/lib/LaunchAttachStore.js
../nuclide/pkg/nuclide-debugger-native/lib/LaunchUIComponent.js
../nuclide/pkg/nuclide-debugger-native/lib/LLDBLaunchAttachProvider.js
../nuclide/pkg/nuclide-debugger-native/lib/main.js
../nuclide/pkg/nuclide-debugger-native-rpc/lib/NativeDebuggerServiceImplementation.js
../nuclide/pkg/nuclide-debugger-native/lib/utils.js
../nuclide/pkg/nuclide-debugger-node/lib/AttachUIComponent.js
../nuclide/pkg/nuclide-debugger-native-rpc/lib/NativeDebuggerServiceInterface.js
../nuclide/pkg/nuclide-debugger-node/lib/LaunchAttachActions.js
../nuclide/pkg/nuclide-debugger-node/lib/LaunchAttachDispatcher.js
../nuclide/pkg/nuclide-debugger-node/lib/LaunchAttachStore.js
../nuclide/pkg/nuclide-debugger-node/lib/main.js
../nuclide/pkg/nuclide-debugger-node/lib/NodeLaunchAttachProvider.js
../nuclide/pkg/nuclide-debugger-node/lib/NodeAttachProcessInfo.js
../nuclide/pkg/nuclide-debugger-node/lib/utils.js
../nuclide/pkg/nuclide-debugger-node-rpc/lib/NodeDebuggerHost.js
../nuclide/pkg/nuclide-debugger-node-rpc/lib/utils.js
../nuclide/pkg/nuclide-debugger-node-rpc/lib/Session.js
../nuclide/pkg/nuclide-debugger-node-rpc/lib/NodeDebuggerService.js
../nuclide/pkg/nuclide-debugger-node-rpc/spec/node-inspector-spec.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/callback.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/BreakEventHandler.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/ConsoleAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/CallFramesProvider.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/ConsoleClient.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/convert.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/debugger.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/DebuggerClient.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/DebuggerAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/FrontendClient.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/FrontendCommandHandler.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/HeapProfilerAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/HeapProfilerClient.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/Injections/HeapProfilerAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/Injections/ConsoleAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/Injections/NetworkAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/InjectorClient.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/Injections/ProfilerAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/InjectorServer.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/NetworkAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/PageAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/plugins.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/ProfilerAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/RuntimeAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/ScriptFileStorage.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/session.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/ScriptManager.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/debug/debug.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/async/lib/async.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/debug/node.js
Index:
===================================================================
---
+++
@@ -57,11 +57,9 @@
*/
-var inspect = 4 === util.inspect.length
- ? // node <= 0.8.x
- (function(v, colors) {
+var inspect = 4 === util.inspect.length // node <= 0.8.x
+ ? (function(v, colors) {
return util.inspect(v, void 0, void 0, colors);
- })
- : // node > 0.8.x
- (function(v, colors) {
+ }) // node > 0.8.x
+ : (function(v, colors) {
return util.inspect(v, { colors: colors });
});
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/ms/index.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/path-is-absolute/index.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/strong-data-uri/index.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/truncate/truncate.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/v8-debug/InjectedScript/InjectedScriptHost.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/v8-debug/InjectedScript/DebuggerScript.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/v8-debug/tools/NODE_NEXT.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/v8-debug/tools/NODE_NEXT.js: SyntaxError: 'return' outside of function (1:0)
> 1 | return module.exports = process.versions.modules > 45;
| ^
2 |
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/v8-debug/v8-debug.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/v8-profiler/v8-profiler.js
../nuclide/pkg/nuclide-debugger-php/lib/AttachProcessInfo.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/v8-debug/InjectedScript/InjectedScriptSource.js
../nuclide/pkg/nuclide-debugger-php/lib/AttachUiComponent.js
../nuclide/pkg/nuclide-debugger-php/lib/HhvmLaunchAttachProvider.js
../nuclide/pkg/nuclide-debugger-php/lib/LaunchProcessInfo.js
../nuclide/pkg/nuclide-debugger-php/lib/LaunchUiComponent.js
../nuclide/pkg/nuclide-debugger-php/lib/main.js
../nuclide/pkg/nuclide-debugger-php/lib/PhpDebuggerInstance.js
../nuclide/pkg/nuclide-debugger-php/lib/ObservableManager.js
../nuclide/pkg/nuclide-debugger-php/lib/utils.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/BreakpointStore.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/ClientCallback.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/config.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/Connection.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/ConnectionMultiplexer.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/ConnectionUtils.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/ConsoleHandler.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/DataCache.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/DbgpConnector.js
Index:
===================================================================
---
+++
@@ -79,6 +79,12 @@
server.on("close", socket => logger.log("Closing port " + this._port));
- server.listen(this._port, undefined, undefined, () => // Hostname. // Backlog -- the maximum length of the queue of pending connections.
- logger.log("Listening on port " + this._port));
+ server.listen(
+ this._port,
+ undefined,
+ undefined,
+ () =>
+ // Hostname. // Backlog -- the maximum length of the queue of pending connections.
+ logger.log("Listening on port " + this._port)
+ );
server.on("error", error => this._onServerError(error));
../nuclide/pkg/nuclide-debugger-php-rpc/lib/DbgpMessageHandler.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/File.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/DebuggerHandler.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/Handler.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/DbgpSocket.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/FileCache.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/helpers.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/frame.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/MessageTranslator.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/ObjectId.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/PageHandler.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/PhpDebuggerService.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/properties.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/RuntimeHandler.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/settings.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/types.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/utils.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/values.js
../nuclide/pkg/nuclide-debugger-php-rpc/scripts/echo.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/ClientCallback-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/ConsoleHandler-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/ConnectionUtils-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/ConnectionMultiplexer-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/DataCache-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/DbgpConnector-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/DbgpMessageHandler-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/DbgpSocket-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/DebuggerHandler-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/FileCache-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/MessageTranslator-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/PhpDebuggerService-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/PageHandler-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/properties-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/RuntimeHandler-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/values-spec.js
../nuclide/pkg/nuclide-debugger-python-rpc/debugger/debugger.js
../nuclide/pkg/nuclide-debugger-python-rpc/debugger/DebuggerCommander.js
../nuclide/pkg/nuclide-debugger-python-rpc/debugger/types.js
../nuclide/pkg/nuclide-debugger-python-rpc/pdb/pdb.js
Index:
===================================================================
---
+++
@@ -108,4 +108,3 @@
});
}
-
/* eslint-enable no-console */
../nuclide/pkg/nuclide-debugger-python-rpc/spec/debugger-spec.js
../nuclide/pkg/nuclide-deep-link/lib/DeepLinkService.js
../nuclide/pkg/nuclide-deep-link/lib/main.js
../nuclide/pkg/nuclide-deep-link/lib/types.js
../nuclide/pkg/nuclide-deep-link/spec/DeepLinkService-spec.js
../nuclide/pkg/nuclide-definition-hyperclick/lib/main.js
../nuclide/pkg/nuclide-definition-hyperclick/spec/DefinitionHyperclick-spec.js
../nuclide/pkg/nuclide-definition-preview/lib/DefinitionPreviewView.js
../nuclide/pkg/nuclide-definition-preview/lib/main.js
../nuclide/pkg/nuclide-definition-service/lib/main.js
../nuclide/pkg/nuclide-definition-service/lib/rpc-types.js
../nuclide/pkg/nuclide-definition-service/spec/DefinitionService-spec.js
../nuclide/pkg/nuclide-definition-service-common/lib/utils.js
../nuclide/pkg/nuclide-diagnostics-common/lib/DiagnosticStore.js
../nuclide/pkg/nuclide-diagnostics-common/lib/main.js
../nuclide/pkg/nuclide-diagnostics-common/lib/MarkerTracker.js
../nuclide/pkg/nuclide-diagnostics-common/lib/rpc-types.js
../nuclide/pkg/nuclide-diagnostics-common/spec/MarkerTracker-spec.js
../nuclide/pkg/nuclide-diagnostics-common/spec/DiagnosticStore-spec.js
../nuclide/pkg/nuclide-diagnostics-datatip-provider/lib/main.js
../nuclide/pkg/nuclide-diagnostics-datatip-provider/lib/DiagnosticsDatatipComponent.js
../nuclide/pkg/nuclide-diagnostics-provider-base/lib/DiagnosticsProviderBase.js
../nuclide/pkg/nuclide-diagnostics-provider-base/lib/main.js
../nuclide/pkg/nuclide-diagnostics-provider-base/spec/DiagnosticsProviderBase-spec.js
../nuclide/pkg/nuclide-diagnostics-provider-base/lib/TextEventDispatcher.js
Index:
===================================================================
---
+++
@@ -299,5 +299,4 @@
callback(editor);
}
-
// We want to avoid storing pending events if this event was generated by
// the same buffer as the current editor, to avoid duplicating events when
../nuclide/pkg/nuclide-diagnostics-provider-base/spec/TextEventDispatcher-spec.js
../nuclide/pkg/nuclide-diagnostics-store/lib/LinterAdapter.js
../nuclide/pkg/nuclide-diagnostics-store/lib/LinterAdapterFactory.js
../nuclide/pkg/nuclide-diagnostics-store/lib/main.js
../nuclide/pkg/nuclide-diagnostics-store/spec/LinterAdapter-spec.js
../nuclide/pkg/nuclide-diagnostics-store/spec/LinterAdapterFactory-spec.js
../nuclide/pkg/nuclide-diagnostics-ui/lib/DiagnosticsPane.js
../nuclide/pkg/nuclide-diagnostics-ui/lib/DiagnosticsPanelModel.js
../nuclide/pkg/nuclide-diagnostics-ui/lib/DiagnosticsPanel.js
Index:
===================================================================
---
+++
@@ -82,4 +82,5 @@
nuclide-diagnostics is not compatible with the linter package. We recommend that
+
you&nbsp;
<a onClick={this.props.disableLinter}>
../nuclide/pkg/nuclide-diagnostics-ui/lib/DiagnosticsPopup.js
../nuclide/pkg/nuclide-diagnostics-ui/lib/DiagnosticsSorter.js
../nuclide/pkg/nuclide-diagnostics-ui/lib/gutter.js
../nuclide/pkg/nuclide-diagnostics-ui/lib/paneUtils.js
../nuclide/pkg/nuclide-diagnostics-ui/lib/main.js
../nuclide/pkg/nuclide-diagnostics-ui/lib/StatusBarTile.js
../nuclide/pkg/nuclide-diagnostics-ui/spec/paneUtils-spec.js
../nuclide/pkg/nuclide-diff-view/lib/constants.js
../nuclide/pkg/nuclide-diff-view/lib/diff-utils.js
../nuclide/pkg/nuclide-diff-view/lib/DiffCommitView.js
../nuclide/pkg/nuclide-diff-view/lib/DiffNavigationBar.js
../nuclide/pkg/nuclide-diff-view/lib/DiffPublishView.js
../nuclide/pkg/nuclide-diff-view/lib/DiffTimelineView.js
../nuclide/pkg/nuclide-diff-view/lib/DiffViewComponent.js
../nuclide/pkg/nuclide-diff-view/lib/DiffViewEditor.js
../nuclide/pkg/nuclide-diff-view/lib/DiffViewModel.js
../nuclide/pkg/nuclide-diff-view/lib/diffViewNux.js
../nuclide/pkg/nuclide-diff-view/lib/new-ui/DiffViewNavigatorComponent.js
../nuclide/pkg/nuclide-diff-view/lib/new-ui/DiffViewNavigatorGadget.js
../nuclide/pkg/nuclide-diff-view/lib/main.js
Index:
===================================================================
---
+++
@@ -224,6 +224,5 @@
actions,
store
- )// Log errors and continue.
- .catch((error, stream) => {
+ ).catch((error, stream) => { // Log errors and continue.
getLogger().error("Diff View Epics Error:", error);
return stream;
@@ -519,4 +518,5 @@
Launches an editable side-by-side compare view across mercurial dirty and commits
+
changes, allowing committing and pushing changes to phabricator.
</span>
../nuclide/pkg/nuclide-diff-view/lib/new-ui/SectionDirectionNavigator.js
../nuclide/pkg/nuclide-diff-view/lib/notifications.js
../nuclide/pkg/nuclide-diff-view/lib/new-ui/SplitDiffView.js
../nuclide/pkg/nuclide-diff-view/lib/redux/Actions.js
../nuclide/pkg/nuclide-diff-view/lib/redux/ActionTypes.js
../nuclide/pkg/nuclide-diff-view/lib/redux/createEmptyAppState.js
../nuclide/pkg/nuclide-diff-view/lib/redux/Epics.js
../nuclide/pkg/nuclide-diff-view/lib/redux/Reducers.js
../nuclide/pkg/nuclide-diff-view/lib/SyncScroll.js
../nuclide/pkg/nuclide-diff-view/lib/RevisionTimelineNode.js
../nuclide/pkg/nuclide-diff-view/lib/types.js
../nuclide/pkg/nuclide-diff-view/lib/UncommittedChangesTimelineNode.js
../nuclide/pkg/nuclide-diff-view/lib/utils.js
Index:
===================================================================
---
+++
@@ -180,17 +180,12 @@
});
getLogger().info("Untracked changes choice:", untrackedChoice);
- if (untrackedChoice === 0)
- /* Cancel */ {
- return null;
- }
- else if (untrackedChoice === 1)
- /* Add */ {
- await repository.addAll(Array.from(untrackedChanges.keys()));
- shouldAmend = true;
- }
- else if (untrackedChoice === 2)
- /* Allow Untracked */ {
- allowUntracked = true;
- }
+ if (untrackedChoice === 0) {
+ /* Cancel */ return null;
+ } else if (untrackedChoice === 1) {
+ /* Add */ await repository.addAll(Array.from(untrackedChanges.keys()));
+ shouldAmend = true;
+ } else if (untrackedChoice === 2) {
+ /* Allow Untracked */ allowUntracked = true;
+ }
}
const revertableChanges: Map<NuclideUri, FileChangeStatusValue> = new Map(
@@ -206,21 +201,16 @@
});
getLogger().info("Dirty changes clean choice:", cleanChoice);
- if (cleanChoice === 0)
- /* Cancel */ {
- return null;
- }
- else if (cleanChoice === 1)
- /* Revert */ {
- const canRevertFilePaths: Array<NuclideUri> = Array.from(
- dirtyFileChanges.entries()
- )
- .filter(fileChange => fileChange[1] !== FileChangeStatus.UNTRACKED)
- .map(fileChange => fileChange[0]);
- await repository.revert(canRevertFilePaths);
- }
- else if (cleanChoice === 2)
- /* Amend */ {
- shouldAmend = true;
- }
+ if (cleanChoice === 0) {
+ /* Cancel */ return null;
+ } else if (cleanChoice === 1) {
+ /* Revert */ const canRevertFilePaths: Array<NuclideUri> = Array.from(
+ dirtyFileChanges.entries()
+ )
+ .filter(fileChange => fileChange[1] !== FileChangeStatus.UNTRACKED)
+ .map(fileChange => fileChange[0]);
+ await repository.revert(canRevertFilePaths);
+ } else if (cleanChoice === 2) {
+ /* Amend */ shouldAmend = true;
+ }
}
if (shouldAmend) {
../nuclide/pkg/nuclide-diff-view/spec/diff-utils-spec.js
../nuclide/pkg/nuclide-diff-view/spec/utils-spec.js
../nuclide/pkg/nuclide-distraction-free-mode/lib/BuiltinProviders.js
../nuclide/pkg/nuclide-distraction-free-mode/lib/DistractionFreeMode.js
../nuclide/pkg/nuclide-distraction-free-mode/lib/main.js
../nuclide/pkg/nuclide-distraction-free-mode/spec/DistractionFreeMode-spec.js
../nuclide/pkg/nuclide-file-tree/components/FileDialogComponent.js
../nuclide/pkg/nuclide-file-tree/components/FileTree.js
../nuclide/pkg/nuclide-file-tree/components/FileTreeSideBarFilterComponent.js
../nuclide/pkg/nuclide-file-tree/components/FileTreeEntryComponent.js
../nuclide/pkg/nuclide-file-tree/components/FileTreeToolbarComponent.js
../nuclide/pkg/nuclide-file-tree/components/FileTreeSidebarComponent.js
../nuclide/pkg/nuclide-file-tree/components/OpenFilesListComponent.js
../nuclide/pkg/nuclide-file-tree/components/ProjectSelection.js
../nuclide/pkg/nuclide-file-tree/components/WorkingSetNameAndSaveComponent.js
../nuclide/pkg/nuclide-file-tree/components/WorkingSetSelectionComponent.js
../nuclide/pkg/nuclide-file-tree/lib/Constants.js
../nuclide/pkg/nuclide-file-tree/lib/FileSystemActions.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeActions.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeConstants.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeContextMenu.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeController.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeFilterHelper.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeDispatcher.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeHelpers.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeHgHelpers.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeSelectionRange.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeNode.js
../nuclide/pkg/nuclide-file-tree/lib/main.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeStore.js
../nuclide/pkg/nuclide-file-tree/lib/MemoizedFieldsDeriver.js
../nuclide/pkg/nuclide-file-tree/spec/FileTreeController-spec.js
../nuclide/pkg/nuclide-file-tree/spec/FileTreeHelpers-spec.js
../nuclide/pkg/nuclide-file-tree/spec/FileTreeNode-spec.js
../nuclide/pkg/nuclide-file-tree/spec/FileTreeSelectionRange-spec.js
../nuclide/pkg/nuclide-file-tree/spec/FileTreeStore-spec.js
../nuclide/pkg/nuclide-file-tree/spec/helpers/BuildTempDirTree.js
../nuclide/pkg/nuclide-file-tree/spec/main-spec.js
../nuclide/pkg/nuclide-file-tree/spec/NodeComponent-spec.js
../nuclide/pkg/nuclide-file-watcher/lib/FileWatcher.js
../nuclide/pkg/nuclide-file-watcher/lib/main.js
../nuclide/pkg/nuclide-filewatcher-rpc/lib/FileWatcherService.js
../nuclide/pkg/nuclide-filewatcher-rpc/spec/FileWatcherService-spec.js
../nuclide/pkg/nuclide-find-references/lib/FindReferencesElement.js
../nuclide/pkg/nuclide-find-references/lib/FindReferencesModel.js
../nuclide/pkg/nuclide-find-references/lib/main.js
../nuclide/pkg/nuclide-find-references/lib/rpc-types.js
../nuclide/pkg/nuclide-find-references/lib/types.js
../nuclide/pkg/nuclide-find-references/lib/view/FileReferencesView.js
../nuclide/pkg/nuclide-flow/lib/constants.js
../nuclide/pkg/nuclide-find-references/lib/view/FindReferencesView.js
../nuclide/pkg/nuclide-find-references/spec/FindReferencesModel-spec.js
../nuclide/pkg/nuclide-flow/lib/flowDiagnosticsCommon.js
../nuclide/pkg/nuclide-flow/lib/FlowDiagnosticsProvider.js
../nuclide/pkg/nuclide-flow/lib/FlowEvaluationExpressionProvider.js
../nuclide/pkg/nuclide-flow/lib/flowMessageToFix.js
../nuclide/pkg/nuclide-flow/lib/FlowServiceFactory.js
../nuclide/pkg/nuclide-flow/lib/FlowServiceWatcher.js
../nuclide/pkg/nuclide-flow/lib/FlowTypeHintProvider.js
../nuclide/pkg/nuclide-flow/lib/main.js
../nuclide/pkg/nuclide-flow/spec/fixtures/fixture.js
../nuclide/pkg/nuclide-flow/spec/FlowDiagnosticsProvider-spec.js
../nuclide/pkg/nuclide-flow/spec/flowMessageToFix-spec.js
../nuclide/pkg/nuclide-flow/spec/FlowServiceFactory-spec.js
../nuclide/pkg/nuclide-flow/spec/FlowTypeHintProvider-spec.js
../nuclide/pkg/nuclide-flow-common/lib/main.js
../nuclide/pkg/nuclide-flow-rpc/lib/astToOutline.js
../nuclide/pkg/nuclide-flow-rpc/lib/diagnosticsParser.js
../nuclide/pkg/nuclide-flow-common/spec/main-spec.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowHelpers.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowExecInfoContainer.js
../nuclide/pkg/nuclide-flow-rpc/lib/flowOutputTypes.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowProcess.js
Index:
===================================================================
---
+++
@@ -150,5 +150,4 @@
throw e;
}
-
// try again
}
../nuclide/pkg/nuclide-flow-rpc/lib/FlowRootContainer.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowRoot.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowServiceState.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowVersion.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowConstants.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowService.js
../nuclide/pkg/nuclide-flow-rpc/lib/prettyPrintTypes.js
../nuclide/pkg/nuclide-flow-rpc/spec/diagnosticsParser-spec.js
../nuclide/pkg/nuclide-flow-rpc/spec/fixtures/class.js
../nuclide/pkg/nuclide-flow-rpc/spec/fixtures/jasmine.js
../nuclide/pkg/nuclide-flow-rpc/spec/fixtures/exports.js
../nuclide/pkg/nuclide-flow-rpc/spec/fixtures/toplevel.js
../nuclide/pkg/nuclide-flow-rpc/spec/astToOutline-spec.js
../nuclide/pkg/nuclide-flow-rpc/spec/fixtures/types.js
../nuclide/pkg/nuclide-flow-rpc/spec/FlowExecInfoContainer-spec.js
../nuclide/pkg/nuclide-flow-rpc/spec/FlowProcess-spec.js
Index:
===================================================================
---
+++
@@ -67,6 +67,5 @@
processModule,
"asyncExecute"
- )// We need this level of indirection to ensure that if fakeCheckOutput
- // is rebound, the new one gets executed.
+ )// is rebound, the new one gets executed. // We need this level of indirection to ensure that if fakeCheckOutput
.andCallFake((...args) => fakeCheckOutput(...args));
../nuclide/pkg/nuclide-flow-rpc/spec/FlowRoot-spec.js
../nuclide/pkg/nuclide-flow-rpc/spec/FlowRootContainer-spec.js
../nuclide/pkg/nuclide-flow-rpc/spec/FlowVersion-spec.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/lib/FileSearch.js
../nuclide/pkg/nuclide-flow-rpc/spec/prettyPrintTypes-spec.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/lib/FileSearchProcess.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/lib/FuzzyFileSearchService.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/lib/PathSet.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/lib/PathSetFactory.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/lib/PathSetUpdater.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/lib/rpc-types.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/spec/FileSearch-spec.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/spec/FuzzyFileSearchService-spec.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/spec/PathSetFactory-spec.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/spec/PathSetUpdater-spec.js
../nuclide/pkg/nuclide-fuzzy-filename-provider/lib/FuzzyFileNameProvider.js
../nuclide/pkg/nuclide-fuzzy-filename-provider/lib/main.js
../nuclide/pkg/nuclide-fuzzy-filename-provider/lib/utils.js
../nuclide/pkg/nuclide-fuzzy-native/lib/FallbackMatcher.js
../nuclide/pkg/nuclide-fuzzy-native/lib/main.js
../nuclide/pkg/nuclide-fuzzy-native/lib/QueryItem.js
../nuclide/pkg/nuclide-fuzzy-native/lib/QueryScore.js
../nuclide/pkg/nuclide-fuzzy-native/lib/TopScores.js
../nuclide/pkg/nuclide-fuzzy-native/lib/utils.js
../nuclide/pkg/nuclide-fuzzy-native/spec/FallbackMatcher-spec.js
../nuclide/pkg/nuclide-fuzzy-native/spec/fuzzy-native-spec.js
../nuclide/pkg/nuclide-fuzzy-native/spec/QueryItem-spec.js
../nuclide/pkg/nuclide-fuzzy-native/spec/TopScores-spec.js
../nuclide/pkg/nuclide-fuzzy-native/spec/utils-spec.js
../nuclide/pkg/nuclide-fuzzy-native/VendorLib/fuzzy-native/lib/main.js
../nuclide/pkg/nuclide-graphql/lib/GraphQLLanguage.js
../nuclide/pkg/nuclide-graphql/lib/main.js
../nuclide/pkg/nuclide-graphql-language-service/bin/graphql.js
../nuclide/pkg/nuclide-graphql-language-service/lib/cli.js
../nuclide/pkg/nuclide-graphql-language-service/lib/client.js
../nuclide/pkg/nuclide-graphql-language-service/lib/config/GraphQLConfig.js
../nuclide/pkg/nuclide-graphql-language-service/lib/interfaces/autocompleteUtils.js
../nuclide/pkg/nuclide-graphql-language-service/lib/interfaces/getAutocompleteSuggestions.js
Index:
===================================================================
---
+++
@@ -289,6 +289,5 @@
// Filter down to only the fragments which may exist here.
const relevantFrags = fragments.filter(
- frag => // Only include fragments with known types.
- typeMap[frag.typeCondition.name.value] &&
+ frag => typeMap[frag.typeCondition.name.value] && // Only include fragments with known types.
// Only include fragments which are not cyclic.
!(defState &&
../nuclide/pkg/nuclide-graphql-language-service/lib/interfaces/getDefinition.js
../nuclide/pkg/nuclide-graphql-language-service/lib/interfaces/getDiagnostics.js
../nuclide/pkg/nuclide-graphql-language-service/lib/interfaces/getOutline.js
../nuclide/pkg/nuclide-graphql-language-service/lib/interfaces/GraphQLLanguageService.js
../nuclide/pkg/nuclide-graphql-language-service/lib/parser/CharacterStream.js
../nuclide/pkg/nuclide-graphql-language-service/lib/parser/onlineParser.js
../nuclide/pkg/nuclide-graphql-language-service/lib/parser/RuleHelpers.js
../nuclide/pkg/nuclide-graphql-language-service/lib/parser/Rules.js
../nuclide/pkg/nuclide-graphql-language-service/lib/server/GraphQLWatchman.js
../nuclide/pkg/nuclide-graphql-language-service/lib/server/startServer.js
../nuclide/pkg/nuclide-graphql-language-service/lib/server/GraphQLCache.js
../nuclide/pkg/nuclide-graphql-language-service/lib/types/Types.js
../nuclide/pkg/nuclide-graphql-language-service/lib/utils/getASTNodeAtPoint.js
../nuclide/pkg/nuclide-graphql-language-service/lib/utils/Range.js
../nuclide/pkg/nuclide-graphql-language-service/lib/utils/SchemaReference.js
../nuclide/pkg/nuclide-graphql-language-service/lib/utils/validateWithCustomRules.js
../nuclide/pkg/nuclide-graphql-language-service/spec/__schema__/customRules.js
../nuclide/pkg/nuclide-graphql-language-service/spec/getAutocompleteSuggestions-spec.js
../nuclide/pkg/nuclide-graphql-language-service/spec/getDefinition-spec.js
../nuclide/pkg/nuclide-graphql-language-service/spec/getDiagnostics-spec.js
../nuclide/pkg/nuclide-graphql-language-service/spec/GraphQLCache-spec.js
../nuclide/pkg/nuclide-graphql-language-service/spec/helpers-spec.js
../nuclide/pkg/nuclide-graphql-language-service/spec/validateWithCustomRules-spec.js
../nuclide/pkg/nuclide-graphql-rpc/lib/config.js
../nuclide/pkg/nuclide-graphql-rpc/lib/DiagnosticsHelper.js
../nuclide/pkg/nuclide-graphql-rpc/lib/GraphQLHelpers.js
../nuclide/pkg/nuclide-graphql-rpc/lib/GraphQLProcess.js
../nuclide/pkg/nuclide-graphql-rpc/lib/GraphQLServerService.js
../nuclide/pkg/nuclide-graphql-rpc/lib/GraphQLService.js
../nuclide/pkg/nuclide-grep-rpc/lib/GrepService.js
../nuclide/pkg/nuclide-grep-rpc/lib/replaceInFile.js
../nuclide/pkg/nuclide-grep-rpc/lib/scanhandler.js
../nuclide/pkg/nuclide-grep-rpc/spec/GrepService-spec.js
../nuclide/pkg/nuclide-grep-rpc/spec/scanhandler-spec.js
../nuclide/pkg/nuclide-hack/lib/config.js
../nuclide/pkg/nuclide-hack/lib/HackLanguage.js
../nuclide/pkg/nuclide-hack/lib/main.js
../nuclide/pkg/nuclide-hack-common/lib/constants.js
../nuclide/pkg/nuclide-hack/spec/HackSymbolProvider-spec.js
../nuclide/pkg/nuclide-hack-rpc/lib/Completions.js
../nuclide/pkg/nuclide-hack-rpc/lib/Definitions.js
../nuclide/pkg/nuclide-hack/lib/HackSymbolProvider.js
../nuclide/pkg/nuclide-hack-rpc/lib/Diagnostics.js
../nuclide/pkg/nuclide-hack-rpc/lib/EvaluationExpression.js
../nuclide/pkg/nuclide-hack-rpc/lib/FindReferences.js
../nuclide/pkg/nuclide-hack-rpc/lib/hack-config.js
../nuclide/pkg/nuclide-hack-rpc/lib/HackConnectionService.js
../nuclide/pkg/nuclide-hack-rpc/lib/HackHelpers.js
../nuclide/pkg/nuclide-hack-rpc/lib/HackProcess.js
Index:
===================================================================
---
+++
@@ -230,5 +230,6 @@
.observeFileEvents()
.ignoreElements()
- .subscribe(undefined, undefined, () => { // next // error
+ .subscribe(undefined, undefined, () => {
+ // next // error
logger.logInfo("fileCache shutting down.");
closeProcesses(fileCache);
../nuclide/pkg/nuclide-hack-rpc/lib/HackService-types.js
../nuclide/pkg/nuclide-hack-rpc/lib/HackService.js
../nuclide/pkg/nuclide-hack-rpc/lib/OutlineView.js
../nuclide/pkg/nuclide-hack-rpc/lib/rpc-types.js
../nuclide/pkg/nuclide-hack-rpc/lib/SymbolSearch.js
../nuclide/pkg/nuclide-hack-rpc/lib/TypedRegions.js
../nuclide/pkg/nuclide-hack-rpc/lib/types.js
../nuclide/pkg/nuclide-hack-rpc/spec/Completions-spec.js
../nuclide/pkg/nuclide-hack-rpc/spec/Definitions-spec.js
../nuclide/pkg/nuclide-hack-rpc/spec/Diagnostics-spec.js
../nuclide/pkg/nuclide-hack-rpc/spec/FindReferences-spec.js
../nuclide/pkg/nuclide-hack-rpc/spec/HackSearchService-spec.js
../nuclide/pkg/nuclide-hack-rpc/spec/OutlineViewProvider-spec.js
../nuclide/pkg/nuclide-hack-rpc/spec/TypedRegion-spec.js
../nuclide/pkg/nuclide-health/lib/getChildProcessesTree.js
../nuclide/pkg/nuclide-health/lib/getStats.js
../nuclide/pkg/nuclide-health/lib/HealthPaneItem.js
../nuclide/pkg/nuclide-health/lib/types.js
../nuclide/pkg/nuclide-health/lib/ui/HealthPaneItemComponent.js
../nuclide/pkg/nuclide-health/lib/main.js
../nuclide/pkg/nuclide-health/lib/ui/sections/ActiveHandlesSectionComponent.js
../nuclide/pkg/nuclide-health/lib/ui/sections/BasicStatsSectionComponent.js
../nuclide/pkg/nuclide-health/lib/ui/sections/ChildProcessTreeComponent.js
../nuclide/pkg/nuclide-health/lib/ui/sections/CommandsSectionComponent.js
../nuclide/pkg/nuclide-health/lib/ui/sections/HandlesTableComponent.js
../nuclide/pkg/nuclide-health/spec/health-spec.js
../nuclide/pkg/nuclide-hg-conflict-resolver/lib/main.js
../nuclide/pkg/nuclide-hg-conflict-resolver/lib/MercurialConflictContext.js
../nuclide/pkg/nuclide-hg-conflict-resolver/lib/MercurialConflictDetector.js
Index:
===================================================================
---
+++
@@ -47,4 +47,5 @@
repository => repository != null && repository.getType() === "hg"
)
+
// Flow doesn't understand the implications of the filter, so we need to cast.
): Set<any>);
../nuclide/pkg/nuclide-hg-repository/lib/HgRepositoryProvider.js
../nuclide/pkg/nuclide-hg-repository/lib/main.js
../nuclide/pkg/nuclide-hg-repository-client/lib/main.js
../nuclide/pkg/nuclide-hg-repository-client/lib/RevisionsCache.js
../nuclide/pkg/nuclide-hg-repository-client/lib/HgRepositoryClient.js
../nuclide/pkg/nuclide-hg-rpc/lib/hg-bookmark-helpers.js
../nuclide/pkg/nuclide-hg-repository-client/spec/HgRepositoryClient-spec.js
../nuclide/pkg/nuclide-hg-rpc/lib/hg-constants.js
../nuclide/pkg/nuclide-hg-rpc/lib/hg-diff-output-parser.js
../nuclide/pkg/nuclide-hg-rpc/lib/hg-exec-types.js
../nuclide/pkg/nuclide-hg-rpc/lib/hg-revision-expression-helpers.js
../nuclide/pkg/nuclide-hg-rpc/lib/hg-revision-state-helpers.js
../nuclide/pkg/nuclide-hg-rpc/lib/hg-utils.js
../nuclide/pkg/nuclide-hg-rpc/lib/main.js
../nuclide/pkg/nuclide-hg-rpc/lib/HgService.js
../nuclide/pkg/nuclide-hg-rpc/spec/hg-diff-output-parser-spec.js
../nuclide/pkg/nuclide-hg-rpc/spec/hg-revision-expression-helpers-spec.js
../nuclide/pkg/nuclide-hg-rpc/spec/hg-revision-state-helpers-spec.js
../nuclide/pkg/nuclide-hg-rpc/spec/HgService-spec.js
../nuclide/pkg/nuclide-hg-rpc/spec/MockHgService.js
../nuclide/pkg/nuclide-hhvm/lib/HhvmBuildSystem.js
../nuclide/pkg/nuclide-hhvm/lib/HhvmDebug.js
../nuclide/pkg/nuclide-hhvm/lib/HhvmToolbar.js
../nuclide/pkg/nuclide-hhvm/lib/main.js
../nuclide/pkg/nuclide-hhvm/lib/types.js
../nuclide/pkg/nuclide-hhvm/lib/ProjectStore.js
../nuclide/pkg/nuclide-home/lib/createUtmUrl.js
../nuclide/pkg/nuclide-home/lib/HomeFeatureComponent.js
../nuclide/pkg/nuclide-home/lib/HomePaneItem.js
Index:
===================================================================
---
+++
@@ -133,10 +133,8 @@
}
- return // Re-use styles from the Atom welcome pane where possible.
- (
- <div className="nuclide-home pane-item padded nuclide-home-containers">
- {containers}
- </div>
- );
+ return; // Re-use styles from the Atom welcome pane where possible.
+ <div className="nuclide-home pane-item padded nuclide-home-containers">
+ {containers}
+ </div>;
}
../nuclide/pkg/nuclide-home/lib/main.js
../nuclide/pkg/nuclide-home/lib/NuclideLogo.js
../nuclide/pkg/nuclide-home/lib/types.js
../nuclide/pkg/nuclide-http-request-sender/lib/Actions.js
../nuclide/pkg/nuclide-http-request-sender/lib/Epics.js
../nuclide/pkg/nuclide-http-request-sender/lib/main.js
../nuclide/pkg/nuclide-http-request-sender/lib/Reducers.js
../nuclide/pkg/nuclide-http-request-sender/lib/types.js
../nuclide/pkg/nuclide-http-request-sender/lib/RequestEditDialog.js
../nuclide/pkg/nuclide-ios-common/lib/main.js
../nuclide/pkg/nuclide-ios-common/spec/main-spec.js
../nuclide/pkg/nuclide-ios-simulator-logs/lib/Activation.js
../nuclide/pkg/nuclide-ios-simulator-logs/lib/createMessage.js
../nuclide/pkg/nuclide-ios-simulator-logs/lib/createMessageStream.js
../nuclide/pkg/nuclide-ios-simulator-logs/lib/main.js
../nuclide/pkg/nuclide-ios-simulator-logs/lib/createProcessStream.js
../nuclide/pkg/nuclide-ios-simulator-logs/lib/parseMessageText.js
../nuclide/pkg/nuclide-ios-simulator-logs/lib/types.js
../nuclide/pkg/nuclide-ios-simulator-logs/spec/createMessageStream-spec.js
../nuclide/pkg/nuclide-ios-simulator-logs/spec/parseMessageText-spec.js
../nuclide/pkg/nuclide-jasmine/bin/jasmine-node-transpiled.js
../nuclide/pkg/nuclide-jasmine/bin/run-jasmine-tests.js
../nuclide/pkg/nuclide-jasmine/lib/faketimer.js
../nuclide/pkg/nuclide-jasmine/lib/focused.js
../nuclide/pkg/nuclide-jasmine/lib/unspy.js
../nuclide/pkg/nuclide-jasmine/lib/waitsForPromise.js
../nuclide/pkg/nuclide-jasmine/spec/faketimer-spec.js
../nuclide/pkg/nuclide-jasmine/spec/run-jasmine-tests-spec.js
../nuclide/pkg/nuclide-json/lib/CodeFormatHelpers.js
../nuclide/pkg/nuclide-json/lib/JSONOutlineProvider.js
../nuclide/pkg/nuclide-json/lib/NPMHyperclickProvider.js
../nuclide/pkg/nuclide-json/lib/main.js
../nuclide/pkg/nuclide-json/lib/parsing.js
../nuclide/pkg/nuclide-json/spec/NPMHyperclickProvider-spec.js
../nuclide/pkg/nuclide-json/spec/JSONOutlineProvider-spec.js
../nuclide/pkg/nuclide-language-service/lib/AtomLanguageService.js
../nuclide/pkg/nuclide-language-hack/spec/hack-spec.js
../nuclide/pkg/nuclide-language-service/lib/AutocompleteProvider.js
../nuclide/pkg/nuclide-language-service/lib/CodeFormatProvider.js
../nuclide/pkg/nuclide-language-service/lib/CodeHighlightProvider.js
../nuclide/pkg/nuclide-language-service/lib/DefinitionProvider.js
../nuclide/pkg/nuclide-language-service/lib/DiagnosticsProvider.js
../nuclide/pkg/nuclide-language-service/lib/EvaluationExpressionProvider.js
../nuclide/pkg/nuclide-language-service/lib/FindReferencesProvider.js
../nuclide/pkg/nuclide-language-service/lib/LanguageService.js
../nuclide/pkg/nuclide-language-service/lib/main.js
../nuclide/pkg/nuclide-language-service/lib/OutlineViewProvider.js
../nuclide/pkg/nuclide-language-service/lib/TypeCoverageProvider.js
../nuclide/pkg/nuclide-language-service/lib/TypeHintProvider.js
../nuclide/pkg/nuclide-language-service/spec/DiagnosticsProvider-spec.js
../nuclide/pkg/nuclide-loaded-shell-hook/lib/main.js
../nuclide/pkg/nuclide-language-service-rpc/lib/ServerLanguageService.js
../nuclide/pkg/nuclide-logging/lib/config.js
../nuclide/pkg/nuclide-logging/lib/consoleAppender.js
../nuclide/pkg/nuclide-logging/lib/main.js
../nuclide/pkg/nuclide-logging/lib/nuclideConsoleAppender.js
../nuclide/pkg/nuclide-logging/lib/rpc-types.js
../nuclide/pkg/nuclide-logging/lib/stacktrace.js
../nuclide/pkg/nuclide-logging/lib/types.js
../nuclide/pkg/nuclide-logging/lib/utils.js
../nuclide/pkg/nuclide-logging/spec/stacktrace-spec.js
../nuclide/pkg/nuclide-logging/spec/utils-spec.js
../nuclide/pkg/nuclide-marshalers-atom/lib/main.js
../nuclide/pkg/nuclide-marshalers-common/lib/main.js
../nuclide/pkg/nuclide-move-item-to-available-pane/lib/main.js
../nuclide/pkg/nuclide-move-item-to-available-pane/lib/move.js
../nuclide/pkg/nuclide-move-item-to-available-pane/spec/move-spec.js
../nuclide/pkg/nuclide-navigation-stack/lib/Location.js
../nuclide/pkg/nuclide-navigation-stack/lib/main.js
../nuclide/pkg/nuclide-navigation-stack/lib/NavigationStack.js
../nuclide/pkg/nuclide-navigation-stack/lib/NavigationStackController.js
../nuclide/pkg/nuclide-navigation-stack/lib/StatusBar.js
../nuclide/pkg/nuclide-navigation-stack/spec/NavigationStackController-spec.js
../nuclide/pkg/nuclide-node-transpiler/bin/transpile.js
../nuclide/pkg/nuclide-node-transpiler/lib/docblock.js
../nuclide/pkg/nuclide-node-transpiler/lib/env.js
../nuclide/pkg/nuclide-node-transpiler/lib/inline-invariant-tr.js
../nuclide/pkg/nuclide-node-transpiler/lib/main.js
../nuclide/pkg/nuclide-node-transpiler/lib/NodeTranspiler.js
../nuclide/pkg/nuclide-node-transpiler/lib/path-rules.js
../nuclide/pkg/nuclide-node-transpiler/lib/require-hook.js
../nuclide/pkg/nuclide-node-transpiler/lib/use-minified-libs-tr.js
../nuclide/pkg/nuclide-node-transpiler/spec/bin-transpile-spec.js
../nuclide/pkg/nuclide-node-transpiler/spec/env-spec.js
../nuclide/pkg/nuclide-node-transpiler/spec/fixtures/modern-syntax.js
../nuclide/pkg/nuclide-node-transpiler/spec/fixtures/require-hook-test.js
../nuclide/pkg/nuclide-node-transpiler/spec/fixtures/vanilla-syntax.js
../nuclide/pkg/nuclide-node-transpiler/spec/inline-invariant-spec.js
../nuclide/pkg/nuclide-node-transpiler/spec/main-spec.js
../nuclide/pkg/nuclide-node-transpiler/spec/NodeTranspiler-spec.js
../nuclide/pkg/nuclide-node-transpiler/spec/path-rules-spec.js
../nuclide/pkg/nuclide-node-transpiler/spec/use-minified-libs-spec.js
../nuclide/pkg/nuclide-notifications/lib/main.js
../nuclide/pkg/nuclide-nux/lib/main.js
../nuclide/pkg/nuclide-nux/lib/NuxManager.js
../nuclide/pkg/nuclide-nux/lib/NuxStore.js
../nuclide/pkg/nuclide-nux/lib/NuxModel.js
../nuclide/pkg/nuclide-nux/lib/NuxTour.js
../nuclide/pkg/nuclide-nux/lib/NuxView.js
../nuclide/pkg/nuclide-nux/spec/NuxTour-spec.js
../nuclide/pkg/nuclide-objc/lib/main.js
../nuclide/pkg/nuclide-objc/lib/ObjectiveCBracketBalancer.js
../nuclide/pkg/nuclide-objc/lib/ObjectiveCColonIndenter.js
../nuclide/pkg/nuclide-objc/spec/ObjectiveCBracketBalancer-spec.js
../nuclide/pkg/nuclide-ocaml/lib/AutoComplete.js
../nuclide/pkg/nuclide-objc/spec/ObjectiveCColonIndenter-spec.js
../nuclide/pkg/nuclide-ocaml/lib/CodeFormatHelpers.js
../nuclide/pkg/nuclide-ocaml/lib/constants.js
../nuclide/pkg/nuclide-ocaml/lib/DestructureHelpers.js
../nuclide/pkg/nuclide-ocaml/lib/HyperclickProvider.js
../nuclide/pkg/nuclide-ocaml/lib/LinterProvider.js
../nuclide/pkg/nuclide-ocaml/lib/main.js
../nuclide/pkg/nuclide-ocaml/lib/Notiflyer.js
../nuclide/pkg/nuclide-ocaml/lib/OutlineProvider.js
../nuclide/pkg/nuclide-ocaml/lib/TypeHintProvider.js
../nuclide/pkg/nuclide-ocaml-rpc/lib/MerlinProcess.js
../nuclide/pkg/nuclide-ocaml-rpc/lib/MerlinService.js
Index:
===================================================================
---
+++
@@ -44,6 +44,5 @@
start: MerlinPosition,
end: MerlinPosition
-}, // this is the content to replace the start-end by. Merlin has an awkawrd API
-// for case analysis.
+}, // for case analysis. // this is the content to replace the start-end by. Merlin has an awkawrd API
string];
../nuclide/pkg/nuclide-ocaml-rpc/lib/ReasonService.js
../nuclide/pkg/nuclide-ocaml-rpc/lib/ReasonProcess.js
../nuclide/pkg/nuclide-ocaml-rpc/spec/MerlinService-spec.js
../nuclide/pkg/nuclide-open-filenames-provider/lib/OpenFileNameProvider.js
../nuclide/pkg/nuclide-open-filenames-provider/lib/main.js
../nuclide/pkg/nuclide-open-files/lib/BufferSubscription.js
../nuclide/pkg/nuclide-open-files/lib/NotifiersByConnection.js
../nuclide/pkg/nuclide-open-files/lib/main.js
../nuclide/pkg/nuclide-open-files-rpc/lib/ConfigObserver.js
../nuclide/pkg/nuclide-open-files-rpc/lib/constants.js
../nuclide/pkg/nuclide-open-files/spec/main-spec.js
../nuclide/pkg/nuclide-open-files-rpc/lib/FileCache.js
../nuclide/pkg/nuclide-open-files-rpc/lib/FileVersionNotifier.js
../nuclide/pkg/nuclide-open-files-rpc/lib/main.js
../nuclide/pkg/nuclide-open-files-rpc/lib/OpenFilesService.js
../nuclide/pkg/nuclide-open-files-rpc/lib/rpc-types.js
../nuclide/pkg/nuclide-open-files-rpc/spec/ConfigObserver-spec.js
../nuclide/pkg/nuclide-open-files-rpc/spec/FileCache-spec.js
../nuclide/pkg/nuclide-outline-view/lib/createOutlines.js
../nuclide/pkg/nuclide-outline-view/lib/main.js
../nuclide/pkg/nuclide-outline-view/lib/OutlineView.js
Index:
===================================================================
---
+++
@@ -213,10 +213,8 @@
return null;
}
- return // Add `position: relative;` to let `li.selected` style position itself relative to the list
+ return; // Add `position: relative;` to let `li.selected` style position itself relative to the list
// tree rather than to its container.
- (
- <ul className="list-tree" style={{ position: "relative" }}>
- {outlines.map((outline, index) => renderTree(editor, outline, index))}
- </ul>
- );
+ <ul className="list-tree" style={{ position: "relative" }}>
+ {outlines.map((outline, index) => renderTree(editor, outline, index))}
+ </ul>;
}
../nuclide/pkg/nuclide-outline-view/lib/OutlineViewPanel.js
../nuclide/pkg/nuclide-outline-view/lib/rpc-types.js
../nuclide/pkg/nuclide-python/lib/config.js
../nuclide/pkg/nuclide-python/lib/constants.js
../nuclide/pkg/nuclide-python/lib/diagnostic-range.js
../nuclide/pkg/nuclide-python/lib/LintHelpers.js
../nuclide/pkg/nuclide-python/lib/main.js
../nuclide/pkg/nuclide-python/spec/diagnostic-range-spec.js
../nuclide/pkg/nuclide-python-rpc/lib/AutocompleteHelpers.js
../nuclide/pkg/nuclide-python-rpc/lib/DefinitionHelpers.js
../nuclide/pkg/nuclide-python-rpc/lib/flake8.js
../nuclide/pkg/nuclide-python-rpc/lib/JediServerManager.js
../nuclide/pkg/nuclide-python-rpc/lib/JediServer.js
../nuclide/pkg/nuclide-python-rpc/lib/JediService.js
../nuclide/pkg/nuclide-python-rpc/lib/LinkTreeManager.js
../nuclide/pkg/nuclide-python-rpc/lib/outline.js
../nuclide/pkg/nuclide-python-rpc/spec/JediServerManager-spec.js
../nuclide/pkg/nuclide-python-rpc/lib/PythonService.js
../nuclide/pkg/nuclide-python-rpc/spec/LinkTreeManager-spec.js
../nuclide/pkg/nuclide-python-rpc/spec/outline-spec.js
../nuclide/pkg/nuclide-python-rpc/spec/PythonService-spec.js
../nuclide/pkg/nuclide-quick-open/lib/FileResultComponent.js
../nuclide/pkg/nuclide-quick-open/lib/QuickOpenProviderRegistry.js
../nuclide/pkg/nuclide-quick-open/lib/QuickSelectionActions.js
../nuclide/pkg/nuclide-quick-open/lib/main.js
../nuclide/pkg/nuclide-quick-open/lib/QuickSelectionDispatcher.js
../nuclide/pkg/nuclide-quick-open/lib/ResultCache.js
../nuclide/pkg/nuclide-quick-open/lib/QuickSelectionComponent.js
../nuclide/pkg/nuclide-quick-open/lib/searchResultHelpers.js
../nuclide/pkg/nuclide-quick-open/lib/SearchResultManager.js
../nuclide/pkg/nuclide-quick-open/lib/types.js
../nuclide/pkg/nuclide-quick-open/spec/searchResultHelpers-spec.js
../nuclide/pkg/nuclide-quick-open/spec/SearchResultManager-spec.js
../nuclide/pkg/nuclide-react-inspector/lib/main.js
../nuclide/pkg/nuclide-react-inspector/lib/ui/Inspector.js
../nuclide/pkg/nuclide-react-inspector/VendorLib/dev-tools/build/embed.js
Index:
===================================================================
---
+++
@@ -180,5 +180,4 @@
return to;
};
-
/***/
},
@@ -902,4 +901,5 @@
/***/
}
+
/******/
}
../nuclide/pkg/nuclide-react-native/lib/Activation.js
../nuclide/pkg/nuclide-react-native/lib/debugging/DebuggerProxyClient.js
../nuclide/pkg/nuclide-react-native/lib/debugging/DebuggingActivation.js
../nuclide/pkg/nuclide-react-inspector/VendorLib/dev-tools/build/backend.js
Index:
===================================================================
---
+++
@@ -1109,5 +1109,4 @@
return arg === void 0;
}
-
/***/
},
@@ -1156,5 +1155,4 @@
return to;
};
-
/***/
},
@@ -1684,5 +1682,4 @@
proto = newProto;
}
-
/* eslint-enable no-proto */
}
@@ -1742,5 +1739,4 @@
? Symbol
: __webpack_require__(10);
-
/***/
},
@@ -1768,5 +1764,4 @@
return true;
};
-
/***/
},
@@ -1948,5 +1943,4 @@
d("c", SymbolPolyfill.prototype[SymbolPolyfill.toPrimitive])
);
-
/***/
},
@@ -2014,5 +2008,4 @@
return !options ? desc : assign(normalizeOpts(options), desc);
};
-
/***/
},
@@ -2023,5 +2016,4 @@
? Object.assign
: __webpack_require__(14);
-
/***/
},
@@ -2036,5 +2028,4 @@
return obj.foo + obj.bar + obj.trzy === "razdwatrzy";
};
-
/***/
},
@@ -2063,5 +2054,4 @@
return dest;
};
-
/***/
},
@@ -2072,5 +2062,4 @@
? Object.keys
: __webpack_require__(17);
-
/***/
},
@@ -2086,5 +2075,4 @@
}
};
-
/***/
},
@@ -2097,5 +2085,4 @@
return keys(object == null ? object : Object(object));
};
-
/***/
},
@@ -2107,5 +2094,4 @@
return value;
};
-
/***/
},
@@ -2129,5 +2115,4 @@
return result;
};
-
/***/
},
@@ -2140,5 +2125,4 @@
return typeof obj === "function";
};
-
/***/
},
@@ -2149,5 +2133,4 @@
? String.prototype.contains
: __webpack_require__(23);
-
/***/
},
@@ -2161,5 +2144,4 @@
return str.contains("dwa") === true && str.contains("foo") === false;
};
-
/***/
},
@@ -2172,5 +2154,4 @@
return indexOf.call(this, searchString, arguments[1]) > -1;
};
-
/***/
},
@@ -2184,5 +2165,4 @@
return value;
};
-
/***/
},
@@ -2195,5 +2175,4 @@
false;
};
-
/***/
},
@@ -3450,4 +3429,5 @@
agent.emit("hideHighlight");
}
+
/***/
},
@@ -3521,4 +3501,5 @@
/***/
}
+
/******/
]
../nuclide/pkg/nuclide-react-native/lib/debugging/DebugUiComponent.js
Index:
===================================================================
---
+++
@@ -93,4 +93,5 @@
After starting the debugger, enable JS debugging from the developer menu of your React
+
Native app
</div>
../nuclide/pkg/nuclide-react-native/lib/debugging/executeRequests.js
../nuclide/pkg/nuclide-react-native/lib/debugging/executor.js
../nuclide/pkg/nuclide-react-native/lib/debugging/ReactNativeDebuggerInstance.js
../nuclide/pkg/nuclide-react-native/lib/debugging/ReactNativeLaunchAttachProvider.js
../nuclide/pkg/nuclide-react-native/lib/debugging/ReactNativeProcessInfo.js
../nuclide/pkg/nuclide-react-native/lib/debugging/runApp.js
../nuclide/pkg/nuclide-react-native/lib/debugging/types.js
../nuclide/pkg/nuclide-react-native/lib/main.js
../nuclide/pkg/nuclide-react-native/lib/packager/PackagerActivation.js
Index:
===================================================================
---
+++
@@ -180,9 +180,8 @@
}
return observeProcess(
- () =>
- safeSpawn(command, args, {
- cwd,
- env: { ...process.env, REACT_EDITOR: quote(editor) }
- }),
+ () => safeSpawn(command, args, {
+ cwd,
+ env: { ...process.env, REACT_EDITOR: quote(editor) }
+ }),
true // Kill all descendant processes when unsubscribing
);
../nuclide/pkg/nuclide-react-native/lib/packager/parseMessages.js
Index:
===================================================================
---
+++
@@ -95,4 +95,5 @@
return;
}
+
// If we've gotten here, it means that we have an unhandled line in the preamble. Those are
// the lines we want to ignore, so don't do anything.
../nuclide/pkg/nuclide-react-native/lib/packager/parseRegularLine.js
../nuclide/pkg/nuclide-react-native/lib/packager/types.js
../nuclide/pkg/nuclide-react-native/lib/shell/ShellActivation.js
../nuclide/pkg/nuclide-react-native/lib/shell/ShellMessageManager.js
../nuclide/pkg/nuclide-react-native/spec/parseMessages-spec.js
../nuclide/pkg/nuclide-react-native/spec/parseRegularLine-spec.js
../nuclide/pkg/nuclide-react-native-base/lib/getCommandInfo.js
../nuclide/pkg/nuclide-react-native-base/lib/main.js
../nuclide/pkg/nuclide-react-native-base/lib/startPackager.js
../nuclide/pkg/nuclide-react-native-base/lib/types.js
../nuclide/pkg/nuclide-recent-files-provider/lib/main.js
../nuclide/pkg/nuclide-recent-files-provider/lib/RecentFilesProvider.js
../nuclide/pkg/nuclide-recent-files-provider/spec/RecentFilesProvider-spec.js
../nuclide/pkg/nuclide-recent-files-service/lib/main.js
../nuclide/pkg/nuclide-recent-files-service/lib/RecentFilesService.js
../nuclide/pkg/nuclide-recent-files-service/spec/RecentFilesService-spec.js
../nuclide/pkg/nuclide-refactorizer/lib/components/MainRefactorComponent.js
../nuclide/pkg/nuclide-refactorizer/lib/components/PickRefactorComponent.js
../nuclide/pkg/nuclide-refactorizer/lib/components/RenameComponent.js
../nuclide/pkg/nuclide-refactorizer/lib/main.js
../nuclide/pkg/nuclide-refactorizer/lib/refactorActions.js
../nuclide/pkg/nuclide-refactorizer/lib/refactorEpics.js
../nuclide/pkg/nuclide-refactorizer/lib/refactorReducers.js
../nuclide/pkg/nuclide-refactorizer/lib/refactorStore.js
../nuclide/pkg/nuclide-refactorizer/lib/refactorUIs.js
../nuclide/pkg/nuclide-refactorizer/lib/types.js
../nuclide/pkg/nuclide-refactorizer/spec/refactorStore-spec.js
../nuclide/pkg/nuclide-related-files/lib/JumpToRelatedFile.js
../nuclide/pkg/nuclide-related-files/lib/main.js
../nuclide/pkg/nuclide-related-files/lib/RelatedFileFinder.js
../nuclide/pkg/nuclide-related-files/spec/JumpToRelatedFile-spec.js
../nuclide/pkg/nuclide-related-files/spec/RelatedFileFinder-spec.js
../nuclide/pkg/nuclide-remote-atom/lib/main.js
../nuclide/pkg/nuclide-remote-atom-rpc/bin/CommandClient.js
../nuclide/pkg/nuclide-remote-atom-rpc/bin/errors.js
../nuclide/pkg/nuclide-remote-atom-rpc/bin/main.js
../nuclide/pkg/nuclide-remote-atom-rpc/lib/CommandServer.js
../nuclide/pkg/nuclide-remote-atom-rpc/lib/CommandService.js
../nuclide/pkg/nuclide-remote-atom-rpc/lib/RemoteCommandService.js
../nuclide/pkg/nuclide-remote-atom-rpc/lib/rpc-types.js
../nuclide/pkg/nuclide-remote-atom-rpc/shared/ConfigDirectory.js
../nuclide/pkg/nuclide-remote-connection/lib/ConnectionCache.js
../nuclide/pkg/nuclide-remote-connection/lib/ConnectionHealthNotifier.js
../nuclide/pkg/nuclide-remote-connection/lib/ConnectionTracker.js
../nuclide/pkg/nuclide-remote-connection/lib/keytarWrapper.js
../nuclide/pkg/nuclide-remote-connection/lib/lookup-prefer-ip-v6.js
../nuclide/pkg/nuclide-remote-connection/lib/main.js
../nuclide/pkg/nuclide-remote-connection/lib/NuclideTextBuffer.js
../nuclide/pkg/nuclide-remote-connection/lib/RemoteConnection.js
../nuclide/pkg/nuclide-remote-connection/lib/RemoteConnectionConfigurationManager.js
../nuclide/pkg/nuclide-remote-connection/lib/RemoteDirectory.js
../nuclide/pkg/nuclide-remote-connection/lib/RemoteFile.js
../nuclide/pkg/nuclide-remote-connection/lib/ServerConnection.js
../nuclide/pkg/nuclide-remote-connection/lib/service-manager.js
../nuclide/pkg/nuclide-remote-connection/spec/connection_mock.js
../nuclide/pkg/nuclide-remote-connection/lib/SshHandshake.js
../nuclide/pkg/nuclide-remote-connection/spec/NuclideTextBuffer-spec.js
../nuclide/pkg/nuclide-remote-connection/spec/keytarWrapper-spec.js
../nuclide/pkg/nuclide-remote-connection/spec/RemoteConnection-spec.js
../nuclide/pkg/nuclide-remote-connection/spec/RemoteConnectionConfigurationManager-spec.js
../nuclide/pkg/nuclide-remote-connection/spec/RemoteDirectory-spec.js
../nuclide/pkg/nuclide-remote-connection/spec/RemoteFile-spec.js
../nuclide/pkg/nuclide-remote-connection/spec/SshHandshake-spec.js
../nuclide/pkg/nuclide-remote-projects/lib/AuthenticationPrompt.js
../nuclide/pkg/nuclide-remote-projects/lib/config.js
../nuclide/pkg/nuclide-remote-projects/lib/connection-types.js
Index:
===================================================================
---
+++
@@ -12,11 +12,8 @@
export type NuclideRemoteAuthMethods = // $FlowFixMe: Flow can't find the PASSWORD property on SupportedMethods.
+ | SshHandshake.SupportedMethods.PASSWORD // $FlowFixMe: Flow can't find the SSL_AGENT property on SupportedMethods.
+ | SshHandshake.SupportedMethods.SSL_AGENT // $FlowFixMe: Flow can't find the PRIVATE_KEY property on SupportedMethods.
+ | SshHandshake.SupportedMethods.PRIVATE_KEY;
- | SshHandshake.SupportedMethods.PASSWORD
- | // $FlowFixMe: Flow can't find the SSL_AGENT property on SupportedMethods.
- SshHandshake.SupportedMethods.SSL_AGENT
- | // $FlowFixMe: Flow can't find the PRIVATE_KEY property on SupportedMethods.
- SshHandshake.SupportedMethods.PRIVATE_KEY;
-
export type NuclideRemoteConnectionParams = {
username: string,
../nuclide/pkg/nuclide-remote-projects/lib/connection-profile-utils.js
../nuclide/pkg/nuclide-remote-projects/lib/ConnectionDetailsForm.js
../nuclide/pkg/nuclide-remote-projects/lib/ConnectionDetailsPrompt.js
../nuclide/pkg/nuclide-remote-projects/lib/ConnectionState.js
../nuclide/pkg/nuclide-remote-projects/lib/ConnectionDialog.js
../nuclide/pkg/nuclide-remote-projects/lib/CreateConnectionProfileForm.js
../nuclide/pkg/nuclide-remote-projects/lib/form-validation-utils.js
../nuclide/pkg/nuclide-remote-projects/lib/IndeterminateProgressBar.js
../nuclide/pkg/nuclide-remote-projects/lib/main.js
../nuclide/pkg/nuclide-remote-projects/lib/notification.js
../nuclide/pkg/nuclide-remote-projects/lib/open-connection.js
../nuclide/pkg/nuclide-remote-projects/lib/patchAtomWorkspaceReplace.js
../nuclide/pkg/nuclide-react-inspector/VendorLib/dev-tools/build/standalone.js
Index:
===================================================================
---
+++
@@ -797,5 +797,4 @@
"use strict";
module.exports = __webpack_require__(7);
-
/***/
},
@@ -990,5 +989,4 @@
return to;
});
-
/***/
},
@@ -5962,5 +5960,4 @@
"use strict";
module.exports = __webpack_require__(42);
-
/***/
},
@@ -9098,5 +9095,4 @@
return to;
});
-
/***/
},
@@ -9659,4 +9655,5 @@
}
}
+
/***/
},
@@ -10883,5 +10880,5 @@
var nextEmpty = nextElement === null || nextElement === false;
- return // This has a few false positives w/r/t empty components.
+ return; // This has a few false positives w/r/t empty components.
prevEmpty ||
nextEmpty ||
@@ -11518,6 +11515,5 @@
}
- var canUseCollections = // Array.from
- typeof Array.from === "function" &&
+ var canUseCollections = typeof Array.from === "function" && // Array.from
// Map
typeof Map === "function" &&
@@ -14141,5 +14137,5 @@
*/
function hasArrayNature(obj) {
- return // not null/false
+ return; // not null/false
!!obj &&
// arrays are objects, NodeLists are functions in Safari
@@ -29020,16 +29016,13 @@
deltaX: function(event) {
return "deltaX" in event
- ? event.deltaX
- : // Fallback to `wheelDeltaX` for Webkit and normalize (right is positive).
- "wheelDeltaX" in event ? -event.wheelDeltaX : 0;
+ ? event.deltaX // Fallback to `wheelDeltaX` for Webkit and normalize (right is positive).
+ : "wheelDeltaX" in event ? -event.wheelDeltaX : 0;
},
deltaY: function(event) {
return "deltaY" in event
- ? event.deltaY
- : // Fallback to `wheelDeltaY` for Webkit and normalize (down is positive).
- "wheelDeltaY" in event
- ? -event.wheelDeltaY
- : // Fallback to `wheelDelta` for IE<9 and normalize (down is positive).
- "wheelDelta" in event ? -event.wheelDelta : 0;
+ ? event.deltaY // Fallback to `wheelDeltaY` for Webkit and normalize (down is positive).
+ : "wheelDeltaY" in event
+ ? -event.wheelDeltaY // Fallback to `wheelDelta` for IE<9 and normalize (down is positive).
+ : "wheelDelta" in event ? -event.wheelDelta : 0;
},
deltaZ: null,
@@ -29532,7 +29525,6 @@
: typeof nextElement === "function"
? " Instead of passing a class like Foo, pass " +
- "React.createElement(Foo) or <Foo />."
- : // Check if it quacks like an element
- nextElement != null &&
+ "React.createElement(Foo) or <Foo />." // Check if it quacks like an element
+ : nextElement != null &&
nextElement.props !== undefined
? " This may be caused by unintentionally loading two independent " +
@@ -30621,5 +30613,4 @@
return to;
};
-
/***/
},
@@ -30925,4 +30916,5 @@
return res;
}
+
/***/
},
@@ -32267,5 +32259,4 @@
? Symbol
: __webpack_require__(217);
-
/***/
},
@@ -32293,5 +32284,4 @@
return true;
};
-
/***/
},
@@ -32473,5 +32463,4 @@
d("c", SymbolPolyfill.prototype[SymbolPolyfill.toPrimitive])
);
-
/***/
},
@@ -32539,5 +32528,4 @@
return !options ? desc : assign(normalizeOpts(options), desc);
};
-
/***/
},
@@ -32548,5 +32536,4 @@
? Object.assign
: __webpack_require__(221);
-
/***/
},
@@ -32561,5 +32548,4 @@
return obj.foo + obj.bar + obj.trzy === "razdwatrzy";
};
-
/***/
},
@@ -32588,5 +32574,4 @@
return dest;
};
-
/***/
},
@@ -32597,5 +32582,4 @@
? Object.keys
: __webpack_require__(224);
-
/***/
},
@@ -32611,5 +32595,4 @@
}
};
-
/***/
},
@@ -32622,5 +32605,4 @@
return keys(object == null ? object : Object(object));
};
-
/***/
},
@@ -32632,5 +32614,4 @@
return value;
};
-
/***/
},
@@ -32654,5 +32635,4 @@
return result;
};
-
/***/
},
@@ -32665,5 +32645,4 @@
return typeof obj === "function";
};
-
/***/
},
@@ -32674,5 +32653,4 @@
? String.prototype.contains
: __webpack_require__(230);
-
/***/
},
@@ -32686,5 +32664,4 @@
return str.contains("dwa") === true && str.contains("foo") === false;
};
-
/***/
},
@@ -32697,5 +32674,4 @@
return indexOf.call(this, searchString, arguments[1]) > -1;
};
-
/***/
},
@@ -32709,5 +32685,4 @@
return value;
};
-
/***/
},
@@ -32720,5 +32695,4 @@
false;
};
-
/***/
},
@@ -34408,5 +34382,4 @@
return to;
});
-
/***/
},
@@ -40734,5 +40707,4 @@
return this.__hash || (this.__hash = hashIterable(this));
}
-
// ### Internal
// abstract __iterate(fn, reverse)
@@ -43212,4 +43184,5 @@
this._eventQueue = [];
}
+
// Public actions
},
@@ -43229,4 +43202,5 @@
this.emit("selectedTab");
}
+
// TODO(jared): get this working for react native
},
@@ -43558,4 +43532,5 @@
}
}
+
// Public methods
},
@@ -43664,4 +43639,5 @@
this.changeSearch(this.searchText);
}
+
// Private stuff
},
@@ -44057,4 +44033,5 @@
return null;
}
+
/***/
},
@@ -44618,5 +44595,4 @@
proto = newProto;
}
-
/* eslint-enable no-proto */
}
@@ -47182,4 +47158,5 @@
/***/
}
+
/******/
]
../nuclide/pkg/nuclide-remote-projects/lib/RemoteDirectoryProvider.js
../nuclide/pkg/nuclide-remote-projects/lib/RemoteDirectorySearcher.js
../nuclide/pkg/nuclide-remote-projects/lib/RemoteProjectsController.js
../nuclide/pkg/nuclide-remote-projects/lib/RemoteProjectsService.js
../nuclide/pkg/nuclide-remote-projects/lib/StatusBarTile.js
../nuclide/pkg/nuclide-remote-projects/lib/utils.js
../nuclide/pkg/nuclide-remote-projects/spec/form-validation-utils-spec.js
../nuclide/pkg/nuclide-remote-projects/spec/RemoteDirectorySearcher-spec.js
../nuclide/pkg/nuclide-remote-projects/spec/RemoteProjectsService-spec.js
../nuclide/pkg/nuclide-remote-projects/spec/utils-spec.js
../nuclide/pkg/nuclide-rpc/bin/generate-proxy.js
../nuclide/pkg/nuclide-rpc/bin/regenerate-baselines.js
../nuclide/pkg/nuclide-rpc/lib/builtin-types.js
../nuclide/pkg/nuclide-rpc/lib/config.js
../nuclide/pkg/nuclide-rpc/lib/DefinitionValidator.js
../nuclide/pkg/nuclide-rpc/lib/index.js
../nuclide/pkg/nuclide-rpc/lib/generate-proxy-main.js
../nuclide/pkg/nuclide-rpc/lib/loadServicesConfig.js
../nuclide/pkg/nuclide-rpc/lib/location.js
../nuclide/pkg/nuclide-rpc/lib/LoopbackTransports.js
../nuclide/pkg/nuclide-rpc/lib/main.js
../nuclide/pkg/nuclide-rpc/lib/messages.js
../nuclide/pkg/nuclide-rpc/lib/ObjectRegistry.js
../nuclide/pkg/nuclide-rpc/lib/regenerate-baselines-main.js
../nuclide/pkg/nuclide-rpc/lib/proxy-generator.js
Index:
===================================================================
---
+++
@@ -533,9 +533,7 @@
return t.newExpression(
t.identifier("Map"),
- obj.size
- ? // new Map([...])
- [objectToLiteral(Array.from(obj.entries()))]
- : // new Map()
- []
+ obj.size // new Map([...])
+ ? [objectToLiteral(Array.from(obj.entries()))] // new Map()
+ : []
);
} else if (typeof obj === "object") {
../nuclide/pkg/nuclide-rpc/lib/RpcConnection.js
../nuclide/pkg/nuclide-rpc/lib/RpcProcess.js
../nuclide/pkg/nuclide-rpc/lib/ServiceRegistry.js
../nuclide/pkg/nuclide-rpc/lib/SocketTransport.js
../nuclide/pkg/nuclide-rpc/lib/service-parser.js
../nuclide/pkg/nuclide-rpc/lib/StreamTransport.js
../nuclide/pkg/nuclide-rpc/lib/SocketServer.js
../nuclide/pkg/nuclide-rpc/lib/TypeRegistry.js
../nuclide/pkg/nuclide-rpc/lib/types.js
../nuclide/pkg/nuclide-rpc/spec/BidiService-spec.js
../nuclide/pkg/nuclide-rpc/spec/BidiService.js
../nuclide/pkg/nuclide-rpc/spec/Class.js
../nuclide/pkg/nuclide-rpc/spec/CounterService-spec.js
../nuclide/pkg/nuclide-rpc/spec/EchoService-spec.js
../nuclide/pkg/nuclide-rpc/spec/CounterService.js
../nuclide/pkg/nuclide-rpc/spec/EchoService.js
../nuclide/pkg/nuclide-rpc/spec/ErrorService-spec.js
../nuclide/pkg/nuclide-rpc/spec/ErrorService.js
../nuclide/pkg/nuclide-rpc/spec/fixtures/dummy-service/DummyService.js
../nuclide/pkg/nuclide-rpc/spec/Function.js
../nuclide/pkg/nuclide-rpc/spec/ImportClassService.js
../nuclide/pkg/nuclide-rpc/spec/ImportError-spec.js
../nuclide/pkg/nuclide-rpc/spec/ImportFunctionService.js
../nuclide/pkg/nuclide-rpc/spec/ImportService-spec.js
../nuclide/pkg/nuclide-rpc/spec/ImportService.js
../nuclide/pkg/nuclide-rpc/spec/loadServicesConfig-spec.js
../nuclide/pkg/nuclide-rpc/spec/location-spec.js
../nuclide/pkg/nuclide-rpc/spec/module-spec.js
../nuclide/pkg/nuclide-rpc/spec/MoreTypes.js
../nuclide/pkg/nuclide-rpc/spec/observable-spec.js
../nuclide/pkg/nuclide-rpc/spec/proxy-generator-spec.js
../nuclide/pkg/nuclide-rpc/spec/RpcProcess-spec.js
../nuclide/pkg/nuclide-rpc/spec/service-parser-spec.js
../nuclide/pkg/nuclide-rpc/spec/ServiceTester.js
../nuclide/pkg/nuclide-rpc/spec/SocketServer-spec.js
../nuclide/pkg/nuclide-rpc/spec/Types.js
../nuclide/pkg/nuclide-rpc/spec/TypeRegistry-spec.js
../nuclide/pkg/nuclide-server/lib/blocked.js
../nuclide/pkg/nuclide-server/lib/compression.js
../nuclide/pkg/nuclide-server/lib/config.js
../nuclide/pkg/nuclide-server/lib/main.js
../nuclide/pkg/nuclide-server/lib/nuclide-main.js
../nuclide/pkg/nuclide-server/lib/NuclideServer.js
../nuclide/pkg/nuclide-server/lib/QueuedTransport.js
../nuclide/pkg/nuclide-server/lib/NuclideSocket.js
../nuclide/pkg/nuclide-server/lib/services/InfoService.js
../nuclide/pkg/nuclide-server/lib/services/SourceControlService.js
../nuclide/pkg/nuclide-server/lib/services/FileSystemService.js
../nuclide/pkg/nuclide-server/lib/servicesConfig.js
../nuclide/pkg/nuclide-server/lib/utils.js
../nuclide/pkg/nuclide-server/lib/WebSocketTransport.js
../nuclide/pkg/nuclide-server/lib/XhrConnectionHeartbeat.js
../nuclide/pkg/nuclide-server/scripts/mock/nuclide-main.js
../nuclide/pkg/nuclide-server/spec/blocked-spec.js
../nuclide/pkg/nuclide-server/spec/NuclideSearchService-spec.js
../nuclide/pkg/nuclide-server/spec/NuclideServer-spec.js
../nuclide/pkg/nuclide-server/spec/NuclideServerSecure-spec.js
../nuclide/pkg/nuclide-server/spec/NuclideSocket-spec.js
../nuclide/pkg/nuclide-server/spec/QueuedTransport-spec.js
../nuclide/pkg/nuclide-server/spec/services/FileSystemService-spec.js
../nuclide/pkg/nuclide-server/spec/services/FindInProjectIntegration-spec.js
../nuclide/pkg/nuclide-server/spec/services/fixtures/basic/test.js
../nuclide/pkg/nuclide-server/spec/services/InfoService-spec.js
../nuclide/pkg/nuclide-server/spec/services/ServiceTestHelper.js
../nuclide/pkg/nuclide-server/spec/servicesConfig-spec.js
../nuclide/pkg/nuclide-server/spec/utils-spec.js
../nuclide/pkg/nuclide-server/spec/WebSocketTransport-spec.js
../nuclide/pkg/nuclide-settings/lib/main.js
../nuclide/pkg/nuclide-settings/lib/settings-utils.js
../nuclide/pkg/nuclide-settings/lib/SettingsCategory.js
../nuclide/pkg/nuclide-settings/lib/SettingsCheckbox.js
../nuclide/pkg/nuclide-settings/lib/SettingsControl.js
../nuclide/pkg/nuclide-settings/lib/SettingsInput.js
../nuclide/pkg/nuclide-settings/lib/SettingsPaneItem.js
../nuclide/pkg/nuclide-settings/lib/SettingsSelect.js
../nuclide/pkg/nuclide-settings/lib/types.js
../nuclide/pkg/nuclide-source-control-helpers/lib/hg-repository.js
../nuclide/pkg/nuclide-source-control-helpers/spec/hg-repository-spec.js
../nuclide/pkg/nuclide-source-control-helpers/lib/main.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/ActionType.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/applyActionMiddleware.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/bookmarkIsEqual.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/Commands.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/constants.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/CreateBookmarkModalComponent.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/DeleteBookmarkModalComponent.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/main.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/RenameBookmarkModalComponent.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/RepositorySectionComponent.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/types.js
../nuclide/pkg/nuclide-swift/lib/main.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/SideBarComponent.js
../nuclide/pkg/nuclide-swift/lib/sourcekitten/Complete.js
../nuclide/pkg/nuclide-swift/lib/sourcekitten/SourceKitten.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/LlbuildYamlParser.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/providers/SwiftPMAutocompletionProvider.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/SwiftPMTaskRunner.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/SwiftPMTaskRunnerActions.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/SwiftPMTaskRunnerCommands.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/SwiftPMTaskRunnerDispatcher.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/SwiftPMTaskRunnerStore.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/SwiftPMTaskRunnerStoreState.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/SwiftPMTaskRunnerTaskMetadata.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/toolbar/SwiftPMSettingsModal.js
../nuclide/pkg/nuclide-swift/lib/taskrunner/toolbar/SwiftPMTaskRunnerToolbar.js
../nuclide/pkg/nuclide-swift/spec/sourcekitten/Complete-spec.js
../nuclide/pkg/nuclide-swift/spec/taskrunner/LlbuildYamlParser-spec.js
../nuclide/pkg/nuclide-task/lib/bootloader.js
../nuclide/pkg/nuclide-task/lib/bootstrap.js
../nuclide/pkg/nuclide-task/spec/bootloader-spec.js
../nuclide/pkg/nuclide-task/spec/fixtures/exports-that-fail.js
../nuclide/pkg/nuclide-task/spec/fixtures/multiple-exports.js
../nuclide/pkg/nuclide-task/spec/fixtures/one-export-returns-object.js
../nuclide/pkg/nuclide-task/spec/fixtures/one-export-returns-string-async.js
../nuclide/pkg/nuclide-task-runner/lib/main.js
../nuclide/pkg/nuclide-task-runner/lib/redux/Actions.js
../nuclide/pkg/nuclide-task-runner/lib/redux/Epics.js
Index:
===================================================================
---
+++
@@ -225,9 +225,5 @@
}
- return createTaskObservable(
- taskMeta,
- store.getState
- )// Stop listening once the task is done.
- .takeUntil(
+ return createTaskObservable(taskMeta, store.getState).takeUntil( // Stop listening once the task is done.
actions.ofType(
Actions.TASK_COMPLETED,
../nuclide/pkg/nuclide-task-runner/lib/redux/Reducers.js
../nuclide/pkg/nuclide-task-runner/lib/trackingMiddleware.js
../nuclide/pkg/nuclide-task-runner/lib/types.js
../nuclide/pkg/nuclide-task-runner/lib/ui/createPanelItem.js
../nuclide/pkg/nuclide-task-runner/lib/ui/ProgressBar.js
../nuclide/pkg/nuclide-task-runner/lib/ui/TaskRunnerButton.js
../nuclide/pkg/nuclide-task-runner/lib/ui/Toolbar.js
../nuclide/pkg/nuclide-task-runner/spec/dummy.js
../nuclide/pkg/nuclide-task-runner/spec/Epics-spec.js
../nuclide/pkg/nuclide-test-helpers/lib/fixtures.js
../nuclide/pkg/nuclide-test-helpers/lib/main.js
../nuclide/pkg/nuclide-test-helpers/lib/matchers.js
../nuclide/pkg/nuclide-test-helpers/spec/arePropertiesEqual-spec.js
../nuclide/pkg/nuclide-test-helpers/spec/expectAsyncFailure-spec.js
../nuclide/pkg/nuclide-test-helpers/spec/fixtures-spec.js
../nuclide/pkg/nuclide-test-helpers/spec/matchers-spec.js
../nuclide/pkg/nuclide-test-helpers/spec/toBeMocked.js
../nuclide/pkg/nuclide-test-helpers/spec/toBeTested.js
../nuclide/pkg/nuclide-test-runner/lib/Ansi.js
../nuclide/pkg/nuclide-test-helpers/spec/uncachedRequire-spec.js
../nuclide/pkg/nuclide-test-runner/lib/main.js
../nuclide/pkg/nuclide-test-runner/lib/TestRunModel.js
../nuclide/pkg/nuclide-test-runner/lib/TestRunnerController.js
../nuclide/pkg/nuclide-test-runner/lib/TestSuiteModel.js
../nuclide/pkg/nuclide-test-runner/lib/types.js
../nuclide/pkg/nuclide-test-runner/lib/ui/Console.js
../nuclide/pkg/nuclide-test-runner/lib/ui/TestClassTree.js
../nuclide/pkg/nuclide-test-runner/lib/ui/TestClassTreeNode.js
../nuclide/pkg/nuclide-test-runner/lib/ui/TestRunnerPanel.js
../nuclide/pkg/nuclide-test-runner/spec/TestRunModel-spec.js
../nuclide/pkg/nuclide-test-runner/spec/TestRunnerController-spec.js
../nuclide/pkg/nuclide-textedit/lib/main.js
../nuclide/pkg/nuclide-test-runner/spec/TestSuiteModel-spec.js
../nuclide/pkg/nuclide-textedit/lib/rpc-types.js
../nuclide/pkg/nuclide-textedit/spec/main-spec.js
../nuclide/pkg/nuclide-type-coverage/lib/coverageDiagnostics.js
../nuclide/pkg/nuclide-type-coverage/lib/main.js
../nuclide/pkg/nuclide-type-coverage/lib/rpc-types.js
../nuclide/pkg/nuclide-type-coverage/lib/StatusBarTile.js
../nuclide/pkg/nuclide-type-coverage/lib/StatusBarTileComponent.js
../nuclide/pkg/nuclide-type-coverage/lib/types.js
../nuclide/pkg/nuclide-type-coverage/spec/coverageDiagnostics-spec.js
../nuclide/pkg/nuclide-type-hint/lib/main.js
../nuclide/pkg/nuclide-type-hint/lib/rpc-types.js
../nuclide/pkg/nuclide-type-hint/lib/TypeHintComponent.js
../nuclide/pkg/nuclide-type-hint/lib/TypeHintManager.js
../nuclide/pkg/nuclide-type-hint/lib/types.js
../nuclide/pkg/nuclide-ui/add-tooltip.js
../nuclide/pkg/nuclide-ui/AtomInput.js
Index:
===================================================================
---
+++
@@ -195,17 +195,15 @@
});
- return // Because the contents of `<atom-text-editor>` elements are managed by its custom web
+ return; // Because the contents of `<atom-text-editor>` elements are managed by its custom web
// component class when "Use Shadow DOM" is disabled, this element should never have children.
// If an element has no children, React guarantees it will never re-render the element (which
// would wipe out the web component's work in this case).
- (
- <atom-text-editor
- class={className}
- mini
- onClick={this.props.onClick}
- onFocus={this.props.onFocus}
- onBlur={this.props.onBlur}
- />
- );
+ <atom-text-editor
+ class={className}
+ mini
+ onClick={this.props.onClick}
+ onFocus={this.props.onFocus}
+ onBlur={this.props.onBlur}
+ />;
}
../nuclide/pkg/nuclide-ui/AtomTextEditor.js
../nuclide/pkg/nuclide-ui/Badge.example.js
../nuclide/pkg/nuclide-ui/Badge.js
../nuclide/pkg/nuclide-ui/bindObservableAsProps.js
../nuclide/pkg/nuclide-ui/Block.js
../nuclide/pkg/nuclide-ui/Button.example.js
../nuclide/pkg/nuclide-ui/Button.js
../nuclide/pkg/nuclide-ui/ButtonGroup.js
../nuclide/pkg/nuclide-ui/ButtonToolbar.js
../nuclide/pkg/nuclide-ui/ChangedFilesList.js
Index:
===================================================================
---
+++
@@ -103,8 +103,7 @@
placement: "bottom"
})}
- onClick={() =>
- this.setState({
- visiblePagesCount: this.state.visiblePagesCount + 1
- })}
+ onClick={() => this.setState({
+ visiblePagesCount: this.state.visiblePagesCount + 1
+ })}
/>
: null;
../nuclide/pkg/nuclide-ui/Checkbox.example.js
../nuclide/pkg/nuclide-ui/Checkbox.js
../nuclide/pkg/nuclide-ui/CodeSnippet.js
../nuclide/pkg/nuclide-ui/Combobox.js
../nuclide/pkg/nuclide-ui/CustomPaneItem.js
../nuclide/pkg/nuclide-ui/Diagnostics.example.js
../nuclide/pkg/nuclide-ui/DiagnosticsMessage.js
../nuclide/pkg/nuclide-ui/DiagnosticsMessageText.js
../nuclide/pkg/nuclide-ui/DiagnosticsTraceItem.js
../nuclide/pkg/nuclide-ui/Dropdown.js
../nuclide/pkg/nuclide-ui/Highlight.example.js
../nuclide/pkg/nuclide-ui/Highlight.js
../nuclide/pkg/nuclide-ui/highlightOnUpdate.js
../nuclide/pkg/nuclide-ui/HR.js
../nuclide/pkg/nuclide-ui/Icon.js
../nuclide/pkg/nuclide-ui/LazyTreeNode.js
../nuclide/pkg/nuclide-ui/Icon.example.js
../nuclide/pkg/nuclide-ui/ignoreTextSelectionEvents.js
../nuclide/pkg/nuclide-ui/ListView.example.js
../nuclide/pkg/nuclide-ui/LazyNestedValueComponent.js
../nuclide/pkg/nuclide-ui/ListView.js
../nuclide/pkg/nuclide-ui/LoadingSpinner.js
../nuclide/pkg/nuclide-ui/main.js
../nuclide/pkg/nuclide-ui/MeasuredComponent.js
../nuclide/pkg/nuclide-ui/Modal.js
../nuclide/pkg/nuclide-ui/ModalMultiSelect.js
../nuclide/pkg/nuclide-ui/MultiRootChangedFilesView.example.js
../nuclide/pkg/nuclide-ui/MultiRootChangedFilesView.js
../nuclide/pkg/nuclide-ui/MultiSelectList.js
../nuclide/pkg/nuclide-ui/ObservingComponent.js
../nuclide/pkg/nuclide-ui/MutableListSelector.js
../nuclide/pkg/nuclide-ui/PanelComponent.js
../nuclide/pkg/nuclide-ui/PanelComponentScroller.js
../nuclide/pkg/nuclide-ui/Portal.js
../nuclide/pkg/nuclide-ui/ProgressBar.js
../nuclide/pkg/nuclide-ui/ProgressIndicators.example.js
../nuclide/pkg/nuclide-ui/RadioGroup.example.js
../nuclide/pkg/nuclide-ui/RadioGroup.js
../nuclide/pkg/nuclide-ui/ReactMountRootElement.js
../nuclide/pkg/nuclide-ui/RelativeDate.example.js
../nuclide/pkg/nuclide-ui/RelativeDate.js
../nuclide/pkg/nuclide-ui/ResizableFlexContainer.example.js
../nuclide/pkg/nuclide-ui/ResizableFlexContainer.js
Index:
===================================================================
---
+++
@@ -84,8 +84,9 @@
if (direction === FlexDirections.HORIZONTAL) {
lastPane = lastPane.splitRight({ flexScale });
- } else
- /* direction === SplitDirections.VERTICAL */ {
- lastPane = lastPane.splitDown({ flexScale });
- }
+ } else {
+ /* direction === SplitDirections.VERTICAL */ lastPane = lastPane.splitDown(
+ { flexScale }
+ );
+ }
this._panes.push(lastPane);
}
../nuclide/pkg/nuclide-ui/Section.js
../nuclide/pkg/nuclide-ui/ShowMoreComponent.js
../nuclide/pkg/nuclide-ui/SimpleValueComponent.js
../nuclide/pkg/nuclide-ui/spec/AtomInput-spec.js
../nuclide/pkg/nuclide-ui/spec/AtomTextEditor-spec.js
../nuclide/pkg/nuclide-ui/spec/DiagnosticMessageTest-spec.js
../nuclide/pkg/nuclide-ui/spec/LazyTestTreeNode.js
../nuclide/pkg/nuclide-ui/spec/LazyTreeNode-spec.js
../nuclide/pkg/nuclide-ui/spec/NuclideDropdown-spec.js
../nuclide/pkg/nuclide-ui/spec/NuclideCheckbox-spec.js
../nuclide/pkg/nuclide-ui/spec/NuclideRadioGroup-spec.js
../nuclide/pkg/nuclide-ui/spec/NuclideTabs-spec.js
../nuclide/pkg/nuclide-ui/spec/TreeNodeComponent-spec.js
../nuclide/pkg/nuclide-ui/SplitButtonDropdown.js
../nuclide/pkg/nuclide-ui/Table.example.js
../nuclide/pkg/nuclide-ui/spec/TreeRootComponent-spec.js
../nuclide/pkg/nuclide-ui/Tabs.example.js
../nuclide/pkg/nuclide-ui/Table.js
Index:
===================================================================
---
+++
@@ -325,5 +325,5 @@
sortIndicator = (
<span>
- <Icon icon={sortDescending ? "triangle-down" : "triangle-up"} />
+ <Icon icon={sortDescending ? "triangle-down" : "triangle-up"} />
</span>
);
../nuclide/pkg/nuclide-ui/Tabs.js
../nuclide/pkg/nuclide-ui/TextInputs.example.js
../nuclide/pkg/nuclide-ui/TextRenderer.js
../nuclide/pkg/nuclide-ui/Toggle.example.js
../nuclide/pkg/nuclide-ui/Toggle.js
../nuclide/pkg/nuclide-ui/Toolbar.example.js
../nuclide/pkg/nuclide-ui/Toolbar.js
../nuclide/pkg/nuclide-ui/ToolbarCenter.js
../nuclide/pkg/nuclide-ui/ToolbarLeft.js
../nuclide/pkg/nuclide-ui/ToolbarRight.js
../nuclide/pkg/nuclide-ui/tree-node-traversals.js
../nuclide/pkg/nuclide-ui/Tree.example.js
../nuclide/pkg/nuclide-ui/Tree.js
Index:
===================================================================
---
+++
@@ -35,7 +35,6 @@
{...remainingProps}
>
- {selected && typeof children === "string"
- ? // String children must be wrapped to receive correct styles when selected.
- <span>{children}</span>
+ {selected && typeof children === "string" // String children must be wrapped to receive correct styles when selected.
+ ? <span>{children}</span>
: children}
</li>
../nuclide/pkg/nuclide-ui/TreeNodeComponent.js
../nuclide/pkg/nuclide-ui/types.js
../nuclide/pkg/nuclide-ui/TreeRootComponent.js
../nuclide/pkg/nuclide-ui/ValueComponentClassNames.js
../nuclide/pkg/nuclide-ui/VendorLib/atom-tabs/lib/default-file-icons.js
../nuclide/pkg/nuclide-ui/VendorLib/atom-tabs/lib/file-icons.js
../nuclide/pkg/nuclide-ui/VendorLib/atom-tabs/lib/layout.js
../nuclide/pkg/nuclide-ui/VendorLib/atom-tabs/lib/main.js
../nuclide/pkg/nuclide-ui/VendorLib/atom-tabs/lib/mru-item-view.js
../nuclide/pkg/nuclide-ui/VendorLib/atom-tabs/lib/mru-list-view.js
../nuclide/pkg/nuclide-ui/View.js
../nuclide/pkg/nuclide-ui/VendorLib/atom-tabs/lib/tab-bar-view.js
../nuclide/pkg/nuclide-ui/Webview.js
../nuclide/pkg/nuclide-ui/VendorLib/atom-tabs/lib/tab-view.js
../nuclide/pkg/nuclide-unicode-datatip/lib/main.js
../nuclide/pkg/nuclide-unicode-datatip/lib/UnescapedUnicodeDatatip.js
../nuclide/pkg/nuclide-unicode-datatip/lib/UnescapedUnicodeDatatipComponent.js
../nuclide/pkg/nuclide-unicode-datatip/lib/Unicode.js
../nuclide/pkg/nuclide-unicode-datatip/lib/UnicodeDatatipManager.js
../nuclide/pkg/nuclide-unicode-datatip/spec/unicode-spec.js
../nuclide/pkg/nuclide-url-hyperclick/lib/HyperclickProviderHelpers.js
../nuclide/pkg/nuclide-url-hyperclick/lib/main.js
../nuclide/pkg/nuclide-vcs-log/lib/main.js
../nuclide/pkg/nuclide-vcs-log/lib/util.js
../nuclide/pkg/nuclide-vcs-log/lib/VcsLog.js
../nuclide/pkg/nuclide-vcs-log/lib/VcsLogPaneItem.js
../nuclide/pkg/nuclide-version/lib/main.js
../nuclide/pkg/nuclide-version/spec/version-spec.js
../nuclide/pkg/nuclide-watchman-helpers/lib/main.js
../nuclide/pkg/nuclide-watchman-helpers/lib/path.js
../nuclide/pkg/nuclide-watchman-helpers/lib/WatchmanClient.js
../nuclide/pkg/nuclide-watchman-helpers/lib/WatchmanSubscription.js
../nuclide/pkg/nuclide-working-sets/lib/main.js
../nuclide/pkg/nuclide-watchman-helpers/spec/WatchmanClient-spec.js
../nuclide/pkg/nuclide-working-sets/lib/PathsObserver.js
../nuclide/pkg/nuclide-working-sets/lib/types.js
../nuclide/pkg/nuclide-working-sets/lib/WorkingSetsConfig.js
../nuclide/pkg/nuclide-working-sets/lib/WorkingSetsStore.js
../nuclide/pkg/nuclide-working-sets/spec/WorkingSetsStore-spec.js
../nuclide/pkg/nuclide-working-sets-common/lib/main.js
../nuclide/pkg/nuclide-working-sets-common/lib/uri.js
../nuclide/pkg/nuclide-working-sets-common/lib/WorkingSet.js
../nuclide/pkg/nuclide-working-sets-common/spec/uri-spec.js
../nuclide/pkg/nuclide-working-sets-common/spec/WorkingSet-spec.js
../nuclide/pkg/nuclide-workspace-view-locations/lib/main.js
../nuclide/pkg/nuclide-workspace-view-locations/lib/observeAddedPaneItems.js
../nuclide/pkg/nuclide-workspace-view-locations/lib/observePanes.js
../nuclide/pkg/nuclide-workspace-view-locations/lib/PanelLocationIds.js
../nuclide/pkg/nuclide-workspace-view-locations/lib/PanelLocation.js
../nuclide/pkg/nuclide-workspace-view-locations/lib/PaneLocation.js
../nuclide/pkg/nuclide-workspace-view-locations/lib/syncPaneItemVisibility.js
../nuclide/pkg/nuclide-workspace-view-locations/lib/types.js
../nuclide/pkg/nuclide-workspace-view-locations/lib/ui/Panel.js
../nuclide/pkg/nuclide-workspace-view-locations/spec/PanelLocation-spec.js
../nuclide/pkg/nuclide-workspace-views/lib/AppSerialization.js
../nuclide/pkg/nuclide-workspace-views/lib/main.js
Index:
===================================================================
---
+++
@@ -141,6 +141,5 @@
actions,
store
- )// Log errors and continue.
- .catch((err, stream) => {
+ ).catch((err, stream) => { // Log errors and continue.
getLogger().error(err);
return stream;
../nuclide/pkg/nuclide-workspace-views/lib/redux/Actions.js
../nuclide/pkg/nuclide-workspace-views/lib/redux/Reducers.js
../nuclide/pkg/nuclide-workspace-views/lib/redux/Epics.js
Index:
===================================================================
---
+++
@@ -88,6 +88,5 @@
store: Store
): Observable<Action> {
- return actions.ofType(Actions.ITEM_CREATED)// Map to a tracking event.
- .map(action => {
+ return actions.ofType(Actions.ITEM_CREATED).map(action => { // Map to a tracking event.
invariant(action.type === Actions.ITEM_CREATED);
const { itemType } = action.payload;
../nuclide/pkg/nuclide-workspace-views/spec/Epics-spec.js
../nuclide/pkg/sample-datatip/lib/main.js
../nuclide/pkg/nuclide-workspace-views/lib/types.js
../nuclide/pkg/sample-datatip/lib/SampleDatatip.js
../nuclide/pkg/sample-datatip/lib/SampleDatatipComponent.js
../nuclide/pkg/sample-diagnostics-provider/lib/main.js
../nuclide/pkg/sample-diagnostics-provider/lib/SampleDiagnosticsProvider.js
../nuclide/pkg/sample-executor/lib/main.js
../nuclide/pkg/sample-logging-console/lib/main.js
../nuclide/pkg/sample-nuclide-contributors/lib/main.js
../nuclide/pkg/sample-nux-example/lib/main.js
../nuclide/pkg/sample-quickopen-provider-example/lib/ExampleProvider.js
Index:
===================================================================
---
+++
@@ -150,4 +150,5 @@
});
}
+
/**
* getComponentForItem Optional function that returns a React Element.
../nuclide/pkg/sample-quickopen-provider-example/lib/main.js
../nuclide/pkg/sample-ui-playground/lib/main.js
../nuclide/pkg/sample-ui-playground/lib/Playground.js
../nuclide/pkg/sample-web-view/lib/main.js
../nuclide/pkg/sample-web-view/lib/WebViewPane.js
../nuclide/pkg/sample-workspace-views-example/lib/ExampleGadgetA.js
../nuclide/pkg/sample-workspace-views-example/lib/ExampleGadgetB.js
../nuclide/pkg/sample-workspace-views-example/lib/main.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment