Skip to content

Instantly share code, notes, and snippets.

@vjeux
Created February 5, 2017 03:12
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/843ee204d8638db8b774e32b5dac28fd to your computer and use it in GitHub Desktop.
Save vjeux/843ee204d8638db8b774e32b5dac28fd to your computer and use it in GitHub Desktop.
find ../nuclide/pkg -name '*.js' | xargs ./bin/prettier.js --parser flow --trailing-comma --bracket-spacing false --single-quote --debug-check
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,
|};
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);
}
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>),
);
}
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?: {
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) {
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;
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,
Index:
===================================================================
---
+++
@@ -70,5 +70,5 @@
range: result.extent,
language: 'clang'
- // TODO: projectRoot,
+ // TODO: projectRoot,,
};
Index:
===================================================================
---
+++
@@ -72,7 +72,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 = [];
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);
});
Index:
===================================================================
---
+++
@@ -33,4 +33,5 @@
<span className="nuclide-console-new-messages-notification-icon icon icon-nuclicon-arrow-down" />
+
New Messages
</div>
Index:
===================================================================
---
+++
@@ -166,5 +166,9 @@
}
_handleExpressionEvaluationResponse(
- response: ExpressionResult & {id: number},
+ response:
+ & ExpressionResult
+ & {
+ id: number,
+ },
): void {
this._debuggerModel
@@ -173,5 +177,9 @@
}
_handleGetPropertiesResponse(
- response: GetPropertiesResult & {id: number},
+ response:
+ & GetPropertiesResult
+ & {
+ id: number,
+ },
): void {
this._debuggerModel
@@ -289,5 +297,8 @@
}
_setSelectedCallFrameLine(
- options: ?{sourceURL: string, lineNumber: number},
+ options: ?{
+ sourceURL: string,
+ lineNumber: number,
+ },
): void {
this._debuggerModel.getActions().setSelectedCallFrameLine(options);
@@ -302,5 +313,9 @@
}
_handleStopThreadSwitch(
- options: ?{sourceURL: string, lineNumber: number, message: string},
+ options: ?{
+ sourceURL: string,
+ lineNumber: number,
+ message: string,
+ },
) {
if (options == null) {
Index:
===================================================================
---
+++
@@ -394,5 +394,6 @@
return;
}
- runtimeAgent.getProperties(objectId, false, false, false, ( // ownProperties // accessorPropertiesOnly // generatePreview
+ runtimeAgent.getProperties(objectId, false, false, false, (
+ // ownProperties // accessorPropertiesOnly // generatePreview
error,
properties,
Index:
===================================================================
---
+++
@@ -852,5 +852,4 @@
* @return {!Element}
*/,
-
_formatAsArrayEntry: function(output) {
// Prevent infinite expansion of cross-referencing arrays.
@@ -862,5 +861,4 @@
* @return {!Element}
*/,
-
_formatAsAccessorProperty: function(object, propertyPath, isArrayEntry) {
var rootElement = WebInspector.ObjectPropertyTreeElement.createRemoteObjectAccessorPropertySpan(
@@ -909,5 +907,4 @@
* @param {!Element} formattedResult
*/,
-
_formatWithSubstitutionString: function(format, parameters, formattedResult) {
var formatters = {
@@ -1009,5 +1006,4 @@
* @return {boolean}
*/,
-
matchesRegex: function(regexObject) {
regexObject.lastIndex = 0;
@@ -1018,5 +1014,4 @@
* @param {boolean} show
*/,
-
updateTimestamp: function(show) {
if (!this._formattedMessage) return;
@@ -1044,5 +1039,4 @@
* @return {number}
*/,
-
nestingLevel: function() {
return this._nestingLevel;
@@ -1072,5 +1066,4 @@
* @return {!Element}
*/,
-
contentElement: function() {
if (this._element) return this._element;
@@ -1091,5 +1084,4 @@
* @return {!Element}
*/,
-
toMessageElement: function() {
if (this._wrapperElement) return this._wrapperElement;
@@ -1127,5 +1119,4 @@
* @param {!TreeElement} parentTreeElement
*/,
-
_populateStackTraceTreeElement: function(parentTreeElement) {
var target = this._target();
@@ -1170,5 +1161,4 @@
* @return {string}
*/,
-
toString: function() {
var sourceString;
@@ -1273,5 +1263,4 @@
* @return {string}
*/,
-
renderedText: function() {
if (!this._messageElement) return '';
@@ -1281,5 +1270,4 @@
* @return {!Array.<!Element>}
*/,
-
highlightMatches: function(ranges) {
var highlightNodes = [];
@@ -1296,5 +1284,4 @@
* @return {?Element}
*/,
-
_tryFormatAsError: function(string) {
var errorPrefixes = [
@@ -1415,5 +1402,4 @@
* @return {boolean}
*/,
-
collapsed: function() {
return this._collapsed;
@@ -1422,5 +1408,4 @@
* @return {!Element}
*/,
-
toMessageElement: function() {
if (!this._wrapperElement) {
Index:
===================================================================
---
+++
@@ -122,5 +122,6 @@
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),
+
+ // 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),,
};
var compression = this.responseCompression;
^C
[/Users/vjeux/random/prettier] [vjeux@vjeux-mbp]
(1498) >> find ../nuclide/pkg -name '*.js' | xargs ./bin/prettier.js --parser flow --trailing-comma --bracket-spacing false --single-quote --debug-check
../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/featureConfig.js
../nuclide/pkg/commons-atom/file-type-class.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/observe-language-text-editors.js
../nuclide/pkg/commons-atom/PanelRenderer.js
../nuclide/pkg/commons-atom/on-will-destroy-text-buffer.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/ActiveEditorRegistry-spec.js
../nuclide/pkg/commons-atom/spec/AutocompleteCacher-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/cache.js
../nuclide/pkg/commons-node/collection.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/memoizeUntilChanged.js
../nuclide/pkg/commons-node/nice.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/range.js
../nuclide/pkg/commons-node/redux-observable.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/ScribeProcess.js
../nuclide/pkg/commons-node/SharedObservableCache.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/ConfigCache-spec.js
../nuclide/pkg/commons-node/spec/debounce-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/string.js
../nuclide/pkg/commons-node/system-info.js
../nuclide/pkg/commons-node/tasks.js
../nuclide/pkg/commons-node/tokenizedText-rpc-types.js
../nuclide/pkg/commons-node/UniversalDisposable.js
../nuclide/pkg/commons-node/tokenizedText.js
../nuclide/pkg/commons-node/which.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/analytics.js
../nuclide/pkg/nuclide-analytics/lib/AnalyticsBatcher.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-entry.js
../nuclide/pkg/nuclide-atom-script/lib/test-runner.js
../nuclide/pkg/nuclide-atom-script/lib/types.js
../nuclide/pkg/nuclide-atom-script/samples/echo.js
../nuclide/pkg/nuclide-atom-script/samples/keybindings.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/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/lib/utils.js
../nuclide/pkg/nuclide-bookshelf/spec/accumulateState-spec.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
Index:
===================================================================
---
+++
@@ -70,5 +70,5 @@
range: result.extent,
language: 'clang'
- // TODO: projectRoot,
+ // TODO: projectRoot,,
};
../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/OutlineViewHelpers.js
../nuclide/pkg/nuclide-clang/lib/Refactoring.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/main.js
../nuclide/pkg/nuclide-code-format/lib/config.js
../nuclide/pkg/nuclide-code-format/lib/types.js
../nuclide/pkg/nuclide-code-highlight/lib/main.js
../nuclide/pkg/nuclide-code-highlight/lib/CodeHighlightManager.js
../nuclide/pkg/nuclide-console/lib/LogTailer.js
Index:
===================================================================
---
+++
@@ -72,7 +72,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/getCurrentExecutorId.js
../nuclide/pkg/nuclide-code-highlight/lib/types.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/FunnelIcon.js
../nuclide/pkg/nuclide-console/lib/ui/InputArea.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:
===================================================================
---
+++
@@ -33,4 +33,5 @@
<span className="nuclide-console-new-messages-notification-icon icon icon-nuclicon-arrow-down" />
+
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/main.js
../nuclide/pkg/nuclide-context-view/lib/NoProvidersView.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/lib/utils.js
../nuclide/pkg/nuclide-ctags/spec/HyperclickHelpers-spec.js
../nuclide/pkg/nuclide-ctags/spec/QuickOpenHelpers-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-ctags-rpc/VendorLib/ctags-prebuilt/lib/readable.js
../nuclide/pkg/nuclide-current-working-directory/lib/Activation.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/BreakpointStore.js
../nuclide/pkg/nuclide-debugger/lib/BreakpointManager.js
../nuclide/pkg/nuclide-debugger/lib/Bridge.js
Index:
===================================================================
---
+++
@@ -166,5 +166,9 @@
}
_handleExpressionEvaluationResponse(
- response: ExpressionResult & {id: number},
+ response:
+ & ExpressionResult
+ & {
+ id: number,
+ },
): void {
this._debuggerModel
@@ -173,5 +177,9 @@
}
_handleGetPropertiesResponse(
- response: GetPropertiesResult & {id: number},
+ response:
+ & GetPropertiesResult
+ & {
+ id: number,
+ },
): void {
this._debuggerModel
@@ -289,5 +297,8 @@
}
_setSelectedCallFrameLine(
- options: ?{sourceURL: string, lineNumber: number},
+ options: ?{
+ sourceURL: string,
+ lineNumber: number,
+ },
): void {
this._debuggerModel.getActions().setSelectedCallFrameLine(options);
@@ -302,5 +313,9 @@
}
_handleStopThreadSwitch(
- options: ?{sourceURL: string, lineNumber: number, message: string},
+ options: ?{
+ sourceURL: string,
+ lineNumber: number,
+ message: string,
+ },
) {
if (options == null) {
../nuclide/pkg/nuclide-debugger/lib/ChromeActionRegistryActions.js
../nuclide/pkg/nuclide-debugger/lib/CallstackStore.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:
===================================================================
---
+++
@@ -394,5 +394,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/ContentProviderBasedProjectDelegate.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/ContentScriptProjectDecorator.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/BreakpointManager.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/FileSystemWorkspaceBinding.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/FileUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/Linkifier.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/LiveLocation.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/ResourceScriptMapping.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/bindings/ResourceUtils.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/closebrackets.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/clike.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/coffeescript.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/comment.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/css.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/codemirror.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/headlesscodemirror.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/javascript.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/cm/overlay.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/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/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/NotificationService.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Object.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/StaticContentProvider.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Settings.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/TextUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/Throttler.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/UIString.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/WebInspector.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/common/WorkerRuntime.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/DebuggerPresentationUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/BreakpointsSidebarPaneBase.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/DockController.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/Drawer.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/DOMPresentationUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/DOMBreakpointsSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/ExecutionContextSelector.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/InspectElementModeController.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/HandlerRegistry.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/ShortcutsScreen.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/components/ObjectPropertiesSection.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/console/CustomPreviewSection.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionAuditCategory.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionAPI.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionRegistryStub.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionPanel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/console/ConsoleViewMessage.js
Index:
===================================================================
---
+++
@@ -852,5 +852,4 @@
* @return {!Element}
*/,
-
_formatAsArrayEntry: function(output) {
// Prevent infinite expansion of cross-referencing arrays.
@@ -862,5 +861,4 @@
* @return {!Element}
*/,
-
_formatAsAccessorProperty: function(object, propertyPath, isArrayEntry) {
var rootElement = WebInspector.ObjectPropertyTreeElement.createRemoteObjectAccessorPropertySpan(
@@ -909,5 +907,4 @@
* @param {!Element} formattedResult
*/,
-
_formatWithSubstitutionString: function(format, parameters, formattedResult) {
var formatters = {
@@ -1009,5 +1006,4 @@
* @return {boolean}
*/,
-
matchesRegex: function(regexObject) {
regexObject.lastIndex = 0;
@@ -1018,5 +1014,4 @@
* @param {boolean} show
*/,
-
updateTimestamp: function(show) {
if (!this._formattedMessage) return;
@@ -1044,5 +1039,4 @@
* @return {number}
*/,
-
nestingLevel: function() {
return this._nestingLevel;
@@ -1072,5 +1066,4 @@
* @return {!Element}
*/,
-
contentElement: function() {
if (this._element) return this._element;
@@ -1091,5 +1084,4 @@
* @return {!Element}
*/,
-
toMessageElement: function() {
if (this._wrapperElement) return this._wrapperElement;
@@ -1127,5 +1119,4 @@
* @param {!TreeElement} parentTreeElement
*/,
-
_populateStackTraceTreeElement: function(parentTreeElement) {
var target = this._target();
@@ -1170,5 +1161,4 @@
* @return {string}
*/,
-
toString: function() {
var sourceString;
@@ -1273,5 +1263,4 @@
* @return {string}
*/,
-
renderedText: function() {
if (!this._messageElement) return '';
@@ -1281,5 +1270,4 @@
* @return {!Array.<!Element>}
*/,
-
highlightMatches: function(ranges) {
var highlightNodes = [];
@@ -1296,5 +1284,4 @@
* @return {?Element}
*/,
-
_tryFormatAsError: function(string) {
var errorPrefixes = [
@@ -1415,5 +1402,4 @@
* @return {boolean}
*/,
-
collapsed: function() {
return this._collapsed;
@@ -1422,5 +1408,4 @@
* @return {!Element}
*/,
-
toMessageElement: function() {
if (!this._wrapperElement) {
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/extensions/ExtensionView.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/host/UserMetrics.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/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/SimpleApp.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/Main.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/TestController.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/RenderingOptions.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/main/OverridesView.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/sdk/AnimationModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/ApplicationCacheModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/AccessibilityModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/platform/utilities.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/Database.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/CSSMetadata.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/CSSStyleModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/DOMStorage.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/DebuggerModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/FileSystemModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/HeapProfilerModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/HAREntry.js
Index:
===================================================================
---
+++
@@ -122,5 +122,6 @@
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),
+
+ // 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),,
};
var compression = this.responseCompression;
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/Runtime.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/DOMModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/NetworkLog.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/IndexedDBModel.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/PaintProfiler.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/Resource.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/OverridesSupport.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/ResourceTreeModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/Script.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/ThreadStore.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/TracingManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/Target.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/TracingModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sdk/WorkerManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/snippets/SnippetStorage.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/snippets/ScriptSnippetModel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/CodeMirrorDictionary.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/CodeMirrorUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/FontView.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
Index:
===================================================================
---
+++
@@ -126,5 +126,4 @@
* @return {number}
*/,
-
_base64ToSize: function(content) {
if (!content || !content.length) return 0;
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/ResourceSourceFrame.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/source_frame/CodeMirrorTextEditor.js
Index:
===================================================================
---
+++
@@ -902,5 +902,4 @@
* @param {!WebInspector.TextEditorAutocompleteDelegate} delegate
*/,
-
setAutocompleteDelegate: function(delegate) {
this._autocompleteController.setDelegate(delegate);
@@ -910,5 +909,4 @@
* @return {?{x: number, y: number, height: number}}
*/,
-
cursorPositionToCoordinates: function(lineNumber, column) {
if (
@@ -933,5 +931,4 @@
* @return {?WebInspector.TextRange}
*/,
-
coordinatesToCursorPosition: function(x, y) {
var element = this.element.ownerDocument.elementFromPoint(x, y);
@@ -956,5 +953,4 @@
* @return {?{startColumn: number, endColumn: number, type: string}}
*/,
-
tokenAtTextPosition: function(lineNumber, column) {
if (lineNumber < 0 || lineNumber >= this._codeMirror.lineCount())
@@ -974,5 +970,4 @@
* @return {string}
*/,
-
copyRange: function(textRange) {
var pos = WebInspector.CodeMirrorUtils.toPos(textRange.normalize());
@@ -981,5 +976,4 @@
* @return {boolean}
*/,
-
isClean: function() {
return this._codeMirror.isClean();
@@ -1006,5 +1000,4 @@
* @return {string}
*/,
-
_whitespaceOverlayMode: function(mimeType) {
var modeName = CodeMirror.mimeModes[mimeType]
@@ -1065,5 +1058,4 @@
* @param {string} mimeType
*/,
-
setMimeType: function(mimeType) {
this._mimeType = mimeType;
@@ -1074,5 +1066,4 @@
* @param {boolean} readOnly
*/,
-
setReadOnly: function(readOnly) {
this.element.classList.toggle('CodeMirror-readonly', readOnly);
@@ -1081,5 +1072,4 @@
* @return {boolean}
*/,
-
readOnly: function() {
return !!this._codeMirror.getOption('readOnly');
@@ -1087,5 +1077,4 @@
* @param {!Object} highlightDescriptor
*/,
-
removeHighlight: function(highlightDescriptor) {
highlightDescriptor.clear();
@@ -1095,5 +1084,4 @@
* @return {!Object}
*/,
-
highlightRange: function(range, cssClass) {
cssClass = 'CodeMirror-persist-highlight ' + cssClass;
@@ -1109,5 +1097,4 @@
* @return {!Element}
*/,
-
defaultFocusedElement: function() {
return this.element;
@@ -1131,5 +1118,4 @@
* @param {function()} operation
*/,
-
operation: function(operation) {
this._codeMirror.operation(operation);
@@ -1137,5 +1123,4 @@
* @param {number} lineNumber
*/,
-
_revealLine: function(lineNumber) {
this._innerRevealLine(lineNumber, this._codeMirror.getScrollInfo());
@@ -1144,5 +1129,4 @@
* @param {!{left: number, top: number, width: number, height: number, clientWidth: number, clientHeight: number}} scrollInfo
*/,
-
_innerRevealLine: function(lineNumber, scrollInfo) {
var topLine = this._codeMirror.lineAtHeight(scrollInfo.top, 'local');
@@ -1194,5 +1178,4 @@
* @param {boolean} conditional
*/,
-
addBreakpoint: function(lineNumber, disabled, conditional) {
if (lineNumber < 0 || lineNumber >= this._codeMirror.lineCount()) return;
@@ -1204,5 +1187,4 @@
* @param {number} lineNumber
*/,
-
removeBreakpoint: function(lineNumber) {
if (lineNumber < 0 || lineNumber >= this._codeMirror.lineCount()) return;
@@ -1217,5 +1199,4 @@
* @param {number} lineNumber
*/,
-
setExecutionLine: function(lineNumber) {
this.clearPositionHighlight();
@@ -1243,5 +1224,4 @@
* @param {boolean} toggled
*/,
-
toggleLineClass: function(lineNumber, className, toggled) {
if (this.hasLineClass(lineNumber, className) === toggled) return;
@@ -1255,5 +1235,4 @@
* @return {boolean}
*/,
-
hasLineClass: function(lineNumber, className) {
var lineInfo = this._codeMirror.lineInfo(lineNumber);
@@ -1265,5 +1244,4 @@
* @param {!Element} element
*/,
-
addDecoration: function(lineNumber, element) {
var widget = this._codeMirror.addLineWidget(lineNumber, element);
@@ -1273,5 +1251,4 @@
* @param {!Element} element
*/,
-
removeDecoration: function(lineNumber, element) {
var widget = this._elementToWidget.remove(element);
@@ -1282,5 +1259,4 @@
* @param {boolean=} shouldHighlight
*/,
-
revealPosition: function(lineNumber, columnNumber, shouldHighlight) {
lineNumber = Number.constrain(
@@ -1329,5 +1305,4 @@
* @return {!Array.<!Element>}
*/,
-
elementsToRestoreScrollPositionsFor: function() {
return [];
@@ -1336,5 +1311,4 @@
* @param {number} height
*/,
-
_updatePaddingBottom: function(width, height) {
var scrollInfo = this._codeMirror.getScrollInfo();
@@ -1368,5 +1342,4 @@
* @override
*/,
-
onResize: function() {
this._autocompleteController.finishAutocomplete();
@@ -1382,5 +1355,4 @@
* @return {!WebInspector.TextRange}
*/,
-
editRange: function(range, text) {
var pos = WebInspector.CodeMirrorUtils.toPos(range);
@@ -1402,5 +1374,4 @@
* @return {!WebInspector.TextRange}
*/,
-
wordRangeForCursorPosition: function(lineNumber, column, isWordChar) {
var line = this.line(lineNumber);
@@ -1424,5 +1395,4 @@
* @param {!Array.<!CodeMirror.ChangeObject>} changes
*/,
-
_changes: function(codeMirror, changes) {
if (!changes.length) return; // We do not show "scroll beyond end of file" span for one line documents, so we need to check if "document has one line" changed.
@@ -1460,5 +1430,4 @@
* @param {{ranges: !Array.<{head: !CodeMirror.Pos, anchor: !CodeMirror.Pos}>}} selection
*/,
-
_beforeSelectionChange: function(codeMirror, selection) {
this._selectNextOccurrenceController.selectionWillChange();
@@ -1477,5 +1446,4 @@
* @param {?WebInspector.TextRange} to
*/,
-
_reportJump: function(from, to) {
if (from && to && from.equal(to)) return;
@@ -1500,5 +1468,4 @@
* @param {number} lineNumber
*/,
-
scrollToLine: function(lineNumber) {
var pos = new CodeMirror.Pos(lineNumber, 0);
@@ -1508,5 +1475,4 @@
* @return {number}
*/,
-
firstVisibleLine: function() {
return this._codeMirror.lineAtHeight(
@@ -1517,5 +1483,4 @@
* @return {number}
*/,
-
lastVisibleLine: function() {
var scrollInfo = this._codeMirror.getScrollInfo();
@@ -1527,5 +1492,4 @@
* @return {!WebInspector.TextRange}
*/,
-
selection: function() {
var start = this._codeMirror.getCursor('anchor');
@@ -1535,5 +1499,4 @@
* @return {!Array.<!WebInspector.TextRange>}
*/,
-
selections: function() {
var selectionList = this._codeMirror.listSelections();
@@ -1549,5 +1512,4 @@
* @return {?WebInspector.TextRange}
*/,
-
lastSelection: function() {
return this._lastSelection;
@@ -1555,5 +1517,4 @@
* @param {!WebInspector.TextRange} textRange
*/,
-
setSelection: function(textRange) {
this._lastSelection = textRange;
@@ -1568,5 +1529,4 @@
* @param {number=} primarySelectionIndex
*/,
-
setSelections: function(ranges, primarySelectionIndex) {
var selections = [];
@@ -1585,5 +1545,4 @@
* @param {string} text
*/,
-
_detectLineSeparator: function(text) {
this._lineSeparator = text.indexOf('\r\n') >= 0 ? '\r\n' : '\n';
@@ -1591,5 +1550,4 @@
* @param {string} text
*/,
-
setText: function(text) {
this._muteTextChangedEvent = true;
@@ -1616,5 +1574,4 @@
* @return {string}
*/,
-
text: function() {
return this._codeMirror.getValue().replace(/\n/g, this._lineSeparator);
@@ -1622,5 +1579,4 @@
* @return {!WebInspector.TextRange}
*/,
-
range: function() {
var lineCount = this.linesCount;
@@ -1634,5 +1590,4 @@
* @return {string}
*/,
-
line: function(lineNumber) {
return this._codeMirror.getLine(lineNumber);
@@ -1640,5 +1595,4 @@
* @return {number}
*/,
-
get linesCount() {
return this._codeMirror.lineCount();
@@ -1648,5 +1602,4 @@
* @param {?Object} value
*/,
-
setAttribute: function(line, name, value) {
if (line < 0 || line >= this._codeMirror.lineCount()) return;
@@ -1659,5 +1612,4 @@
* @return {?Object} value
*/,
-
getAttribute: function(line, name) {
if (line < 0 || line >= this._codeMirror.lineCount()) return null;
@@ -1670,5 +1622,4 @@
* @param {string} name
*/,
-
removeAttribute: function(line, name) {
if (line < 0 || line >= this._codeMirror.lineCount()) return;
@@ -1680,5 +1631,4 @@
* @return {!WebInspector.TextEditorPositionHandle}
*/,
-
textEditorPositionHandle: function(lineNumber, columnNumber) {
return new WebInspector.CodeMirrorPositionHandle(
@@ -1716,5 +1666,4 @@
* @return {boolean}
*/,
-
equal: function(positionHandle) {
return positionHandle._lineHandle === this._lineHandle &&
@@ -1787,5 +1736,4 @@
* @return {!RegExp|undefined}
*/,
-
highlightedRegex: function() {
return this._highlightRegex;
@@ -1834,5 +1782,4 @@
* @param {number} endColumn
*/,
-
_isWord: function(selectedText, lineNumber, startColumn, endColumn) {
var line = this._codeMirror.getLine(lineNumber);
@@ -1855,5 +1802,4 @@
* @param {!CodeMirror.StringStream} stream
*/,
-
_searchHighlighter: function(regex, stream) {
if (stream.column() === 0) delete this._searchMatchLength;
@@ -1885,5 +1831,4 @@
* @param {!CodeMirror.StringStream} stream
*/,
-
_tokenHighlighter: function(token, selectionStart, stream) {
var tokenFirstChar = token.charAt(0);
@@ -1905,5 +1850,4 @@
* @param {?CodeMirror.Pos} selectionStart
*/,
-
_setHighlighter: function(highlighter, selectionStart) {
var overlayMode = {
@@ -1927,5 +1871,4 @@
* @return {*}
*/,
-
Enter: function(codeMirror) {
var selections = codeMirror.listSelections();
@@ -1976,5 +1919,4 @@
* @return {*}
*/,
-
"'}'": function(codeMirror) {
if (codeMirror.somethingSelected()) return CodeMirror.Pass;
@@ -2067,5 +2009,4 @@
* @return {boolean}
*/,
-
_findRange: function(selections, range) {
for (var i = 0; i < selections.length; ++i) {
@@ -2107,5 +2048,4 @@
* @param {!Array.<!WebInspector.TextRange>} selections
*/,
-
_expandSelectionsToWords: function(selections) {
var newSelections = [];
@@ -2145,5 +2085,4 @@
* @return {?WebInspector.TextRange}
*/,
-
_findNextOccurrence: function(range, fullWord) {
range = range.normalize();
@@ -2250,5 +2189,4 @@
* @return {boolean}
*/,
-
equal: function(positionHandle) {},
}; /**
@@ -2266,5 +2204,4 @@
* @param {!WebInspector.TextRange} textRange
*/,
-
selectionChanged: function(
textRange,
@@ -2272,5 +2209,4 @@
* @param {number} lineNumber
*/,
-
scrollChanged: function(lineNumber) {},
@@ -2279,5 +2215,4 @@
* @param {number} lineNumber
*/,
-
populateLineGutterContextMenu: function(
contextMenu,
@@ -2287,5 +2222,4 @@
* @param {number} lineNumber
*/,
-
populateTextAreaContextMenu: function(
contextMenu,
@@ -2295,5 +2229,4 @@
* @param {?WebInspector.TextRange} to
*/,
-
onJumpToPosition: function(from, to) {},
};
../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/AddSourceMapURLDialog.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/FileBasedSearchResultsPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/FilePathScoreFunction.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/InplaceFormatterEditorAction.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/FilteredItemSelectionDialog.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/jsdifflib.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/JavaScriptSourceFrame.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/RevisionHistoryView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/ScopeChainSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/NavigatorView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/ScriptFormatter.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/ScriptFormatterEditorAction.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/ServiceWorkersSidebarPane.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/SourcesSearchScope.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/StyleSheetOutlineDialog.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/SourcesView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/ThreadsSidebarPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/TabbedEditorContainer.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/sources/SourcesPanel.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_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/toolbox/ResponsiveDesignView.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/ForwardedInputEventHandler.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/FilterBar.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/Panel.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ProgressIndicator.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/Popover.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/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/StackView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/SplitView.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/StatusBar.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/SuggestBox.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/treeoutline.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/TextPrompt.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/TabbedPane.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui/ZoomManager.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/UIUtils.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui_lazy/PieChart.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/ui_lazy/OverviewGrid.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/TimelineGrid.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/ViewportDataGrid.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/ExcludedFolderManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/FileManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/FileSystemMapping.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/IsolatedFileSystem.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/IsolatedFileSystemManager.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/SearchConfig.js
../nuclide/pkg/nuclide-debugger-base/lib/AtomServiceContainer.js
../nuclide/pkg/nuclide-debugger-base/lib/ChromeMessageRemoting.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/Workspace.js
../nuclide/pkg/nuclide-debugger-base/lib/DebuggerLaunchAttachProvider.js
../nuclide/pkg/nuclide-debugger-base/lib/DebuggerInstance.js
../nuclide/pkg/nuclide-debugger-base/lib/DebuggerProcessInfo.js
../nuclide/pkg/nuclide-debugger-base/lib/main.js
../nuclide/pkg/nuclide-debugger-base/lib/DebuggerRpcServiceBase.js
../nuclide/pkg/nuclide-debugger-base/lib/LaunchAttachActionsBase.js
../nuclide/pkg/nuclide-debugger-base/spec/ChromeMessageRemoting-spec.js
../nuclide/pkg/nuclide-debugger-common/lib/ClientCallback.js
../nuclide/pkg/nuclide-debugger-common/lib/main.js
../nuclide/pkg/nuclide-debugger-common/lib/DebuggerRpcServiceBase.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/logger.js
../nuclide/pkg/nuclide-debugger-iwdp/lib/AttachUiComponent.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/connectToIwdp.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/connectToPackager.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/constants.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/ConnectionMultiplexer.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-native/lib/actions/AttachActionUIProvider.js
../nuclide/pkg/nuclide-debugger-iwdp-rpc/lib/types.js
../nuclide/pkg/nuclide-debugger-native/lib/actions/DebuggerActionUIProvider.js
../nuclide/pkg/nuclide-debugger-native/lib/actions/LaunchActionUIProvider.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/LaunchAttachActions.js
../nuclide/pkg/nuclide-debugger-native/lib/LaunchAttachStore.js
../nuclide/pkg/nuclide-debugger/VendorLib/devtools/front_end/workspace/UISourceCode.js
../nuclide/pkg/nuclide-debugger-native/lib/LaunchAttachDispatcher.js
../nuclide/pkg/nuclide-debugger-native/lib/LaunchProcessInfo.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/lib/utils.js
../nuclide/pkg/nuclide-debugger-native-rpc/lib/NativeDebuggerServiceImplementation.js
../nuclide/pkg/nuclide-debugger-native-rpc/lib/NativeDebuggerServiceInterface.js
../nuclide/pkg/nuclide-debugger-node/lib/AttachUIComponent.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/NodeAttachProcessInfo.js
../nuclide/pkg/nuclide-debugger-node/lib/NodeLaunchAttachProvider.js
../nuclide/pkg/nuclide-debugger-node/lib/utils.js
../nuclide/pkg/nuclide-debugger-node-rpc/lib/NodeDebuggerHost.js
Index:
===================================================================
---
+++
@@ -48,5 +48,5 @@
preload: false, // This makes the node inspector not load all the source files on startup.
inject: false // This causes the node inspector to fail to send an initial pause message
- // on attach. We don't use this feature, so we turn it off.,
+ // on attach. We don't use this feature, so we turn it off.,,
};
const session = new Session(config, debugPort, websocket);
../nuclide/pkg/nuclide-debugger-node-rpc/lib/NodeDebuggerService.js
../nuclide/pkg/nuclide-debugger-node-rpc/lib/Session.js
../nuclide/pkg/nuclide-debugger-node-rpc/lib/utils.js
../nuclide/pkg/nuclide-debugger-node-rpc/spec/node-inspector-spec.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/BreakEventHandler.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/CallFramesProvider.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/callback.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/ConsoleAgent.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/DebuggerAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/DebuggerClient.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/ConsoleAgent.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/NetworkAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/Injections/ProfilerAgent.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/InjectorClient.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/ScriptManager.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node-inspector/lib/session.js
../nuclide/pkg/nuclide-debugger-node-rpc/VendorLib/node_modules/debug/debug.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/async/lib/async.js
../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: Illegal return statement (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-node-rpc/VendorLib/node_modules/v8-debug/InjectedScript/InjectedScriptSource.js
../nuclide/pkg/nuclide-debugger-php/lib/AttachProcessInfo.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/ObservableManager.js
../nuclide/pkg/nuclide-debugger-php/lib/PhpDebuggerInstance.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/ConnectionUtils.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/ConsoleHandler.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/ConnectionMultiplexer.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/DbgpSocket.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/DebuggerHandler.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/FileCache.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/frame.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/Handler.js
../nuclide/pkg/nuclide-debugger-php-rpc/lib/helpers.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/ConnectionMultiplexer-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/ConnectionUtils-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/ConsoleHandler-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/PageHandler-spec.js
../nuclide/pkg/nuclide-debugger-php-rpc/spec/PhpDebuggerService-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-diagnostics-common/lib/DiagnosticStore.js
../nuclide/pkg/nuclide-definition-service-common/lib/utils.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/DiagnosticStore-spec.js
../nuclide/pkg/nuclide-diagnostics-datatip-provider/lib/DiagnosticsDatatipComponent.js
../nuclide/pkg/nuclide-diagnostics-common/spec/MarkerTracker-spec.js
../nuclide/pkg/nuclide-diagnostics-datatip-provider/lib/main.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/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/DiagnosticsProviderBase-spec.js
../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/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/DiagnosticsPanelModel.js
../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/main.js
../nuclide/pkg/nuclide-diagnostics-ui/lib/StatusBarTile.js
../nuclide/pkg/nuclide-diagnostics-ui/lib/paneUtils.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/DiffPublishView.js
../nuclide/pkg/nuclide-diff-view/lib/DiffNavigationBar.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:
===================================================================
---
+++
@@ -214,6 +214,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;
@@ -509,4 +508,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/Reducers.js
../nuclide/pkg/nuclide-diff-view/lib/redux/Epics.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/spec/utils-spec.js
../nuclide/pkg/nuclide-diff-view/lib/utils.js
Index:
===================================================================
---
+++
@@ -175,17 +175,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(
@@ -201,21 +196,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-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/FileTreeEntryComponent.js
../nuclide/pkg/nuclide-file-tree/components/FileTreeSideBarFilterComponent.js
../nuclide/pkg/nuclide-file-tree/components/FileTreeSidebarComponent.js
../nuclide/pkg/nuclide-file-tree/components/FileTreeToolbarComponent.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/FileTreeConstants.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeActions.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeController.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeContextMenu.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeDispatcher.js
../nuclide/pkg/nuclide-file-tree/lib/FileTreeFilterHelper.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/MemoizedFieldsDeriver.js
../nuclide/pkg/nuclide-file-tree/spec/FileTreeHelpers-spec.js
../nuclide/pkg/nuclide-file-tree/spec/FileTreeController-spec.js
Index:
===================================================================
---
+++
@@ -233,5 +233,4 @@
actions.setSelectedNode(rootKey, dir2Key);
expect(isSelected(rootKey, dir2Key)).toEqual(true);
-
controller._moveUp(); // foo.txt is the previous visible descendant to dir2
expect(isSelected(rootKey, fooTxtKey)).toEqual(true);
../nuclide/pkg/nuclide-file-tree/lib/FileTreeStore.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-find-references/lib/view/FindReferencesView.js
../nuclide/pkg/nuclide-find-references/spec/FindReferencesModel-spec.js
../nuclide/pkg/nuclide-flow/lib/constants.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-common/spec/main-spec.js
../nuclide/pkg/nuclide-flow-rpc/lib/astToOutline.js
../nuclide/pkg/nuclide-flow-rpc/lib/diagnosticsParser.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowConstants.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowExecInfoContainer.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowHelpers.js
../nuclide/pkg/nuclide-flow-rpc/lib/flowOutputTypes.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowProcess.js
Index:
===================================================================
---
+++
@@ -152,5 +152,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/FlowService.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowServiceState.js
../nuclide/pkg/nuclide-flow-rpc/lib/FlowVersion.js
../nuclide/pkg/nuclide-flow-rpc/lib/prettyPrintTypes.js
../nuclide/pkg/nuclide-flow-rpc/spec/astToOutline-spec.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/exports.js
../nuclide/pkg/nuclide-flow-rpc/spec/fixtures/jasmine.js
../nuclide/pkg/nuclide-flow-rpc/spec/fixtures/toplevel.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-flow-rpc/spec/prettyPrintTypes-spec.js
../nuclide/pkg/nuclide-fuzzy-file-search-rpc/lib/FileSearch.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/fuzzy-native-spec.js
../nuclide/pkg/nuclide-fuzzy-native/spec/FallbackMatcher-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/getDefinition.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/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/server/GraphQLCache.js
Index:
===================================================================
---
+++
@@ -167,5 +167,5 @@
size: fileInfo.size,
mtime: fileInfo.mtime
- // Filter any files with path starting with ExcludeDirs,
+ // Filter any files with path starting with ExcludeDirs,,
}))
.filter(fileInfo =>
../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/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/HackSymbolProvider.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-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/main.js
../nuclide/pkg/nuclide-health/lib/types.js
../nuclide/pkg/nuclide-health/lib/ui/HealthPaneItemComponent.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,5 +47,6 @@
repository => repository != null && repository.getType() === 'hg',
)
- // Flow doesn't understand the implications of the filter, so we need to cast.,
+
+ // Flow doesn't understand the implications of the filter, so we need to cast.,,
): Set<any>);
// Dispose removed projects repositories, if 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/HgRepositoryClient.js
../nuclide/pkg/nuclide-hg-repository-client/lib/RevisionsCache.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/spec/hg-diff-output-parser-spec.js
../nuclide/pkg/nuclide-hg-rpc/spec/hg-revision-state-helpers-spec.js
../nuclide/pkg/nuclide-hg-rpc/spec/hg-revision-expression-helpers-spec.js
../nuclide/pkg/nuclide-hg-rpc/lib/HgService.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/RequestEditDialog.js
../nuclide/pkg/nuclide-http-request-sender/lib/types.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/createProcessStream.js
../nuclide/pkg/nuclide-ios-simulator-logs/lib/main.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/main.js
../nuclide/pkg/nuclide-json/lib/NPMHyperclickProvider.js
../nuclide/pkg/nuclide-json/lib/parsing.js
../nuclide/pkg/nuclide-json/spec/JSONOutlineProvider-spec.js
../nuclide/pkg/nuclide-json/spec/NPMHyperclickProvider-spec.js
../nuclide/pkg/nuclide-language-service/lib/AtomLanguageService.js
../nuclide/pkg/nuclide-language-service/lib/AutocompleteProvider.js
../nuclide/pkg/nuclide-language-service/lib/CodeHighlightProvider.js
../nuclide/pkg/nuclide-language-service/lib/CodeFormatProvider.js
../nuclide/pkg/nuclide-language-hack/spec/hack-spec.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-language-service-rpc/lib/ServerLanguageService.js
../nuclide/pkg/nuclide-loaded-shell-hook/lib/main.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/rpc-types.js
../nuclide/pkg/nuclide-logging/lib/nuclideConsoleAppender.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-node-transpiler/bin/transpile.js
../nuclide/pkg/nuclide-navigation-stack/spec/NavigationStackController-spec.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/NuxModel.js
../nuclide/pkg/nuclide-nux/lib/NuxStore.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-objc/spec/ObjectiveCColonIndenter-spec.js
../nuclide/pkg/nuclide-ocaml/lib/AutoComplete.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/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.*/
+} /* this is the content to replace the start-end by. Merlin has an awkawrd API*/, /* for case analysis.*/
string];
../nuclide/pkg/nuclide-ocaml-rpc/lib/MerlinProcess.js
../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/main.js
../nuclide/pkg/nuclide-open-filenames-provider/lib/OpenFileNameProvider.js
../nuclide/pkg/nuclide-open-files/lib/BufferSubscription.js
../nuclide/pkg/nuclide-open-files/lib/main.js
../nuclide/pkg/nuclide-open-files/lib/NotifiersByConnection.js
../nuclide/pkg/nuclide-open-files/spec/main-spec.js
../nuclide/pkg/nuclide-open-files-rpc/lib/ConfigObserver.js
../nuclide/pkg/nuclide-open-files-rpc/lib/constants.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:
===================================================================
---
+++
@@ -211,10 +211,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/JediServer.js
../nuclide/pkg/nuclide-python-rpc/lib/JediServerManager.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/lib/PythonService.js
../nuclide/pkg/nuclide-python-rpc/spec/JediServerManager-spec.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/main.js
../nuclide/pkg/nuclide-quick-open/lib/QuickOpenProviderRegistry.js
../nuclide/pkg/nuclide-quick-open/lib/QuickSelectionActions.js
../nuclide/pkg/nuclide-quick-open/lib/QuickSelectionDispatcher.js
../nuclide/pkg/nuclide-quick-open/lib/QuickSelectionComponent.js
../nuclide/pkg/nuclide-quick-open/lib/ResultCache.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:
===================================================================
---
+++
@@ -182,5 +182,4 @@
return to;
};
-
/***/
},
@@ -793,5 +792,4 @@
module.exports = Overlay; /***/
} /***/,
-
43 /***/: function(module, exports, __webpack_require__) {
/**
../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:
===================================================================
---
+++
@@ -1112,5 +1112,4 @@
return arg === void 0;
}
-
/***/
},
@@ -1159,5 +1158,4 @@
return to;
};
-
/***/
},
@@ -1689,5 +1687,4 @@
proto = newProto;
}
-
/* eslint-enable no-proto */
}
@@ -1749,5 +1746,4 @@
? Symbol
: __webpack_require__(10);
-
/***/
},
@@ -1776,5 +1772,4 @@
return true;
};
-
/***/
},
@@ -1957,5 +1952,4 @@
d('c', SymbolPolyfill.prototype[SymbolPolyfill.toPrimitive]),
);
-
/***/
},
@@ -2024,5 +2018,4 @@
return !options ? desc : assign(normalizeOpts(options), desc);
};
-
/***/
},
@@ -2034,5 +2027,4 @@
? Object.assign
: __webpack_require__(14);
-
/***/
},
@@ -2048,5 +2040,4 @@
return obj.foo + obj.bar + obj.trzy === 'razdwatrzy';
};
-
/***/
},
../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:
===================================================================
---
+++
@@ -181,9 +181,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/types.js
../nuclide/pkg/nuclide-react-native-base/lib/startPackager.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/lib/SshHandshake.js
../nuclide/pkg/nuclide-remote-connection/spec/connection_mock.js
../nuclide/pkg/nuclide-remote-connection/spec/keytarWrapper-spec.js
../nuclide/pkg/nuclide-remote-connection/spec/NuclideTextBuffer-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-projects/lib/AuthenticationPrompt.js
../nuclide/pkg/nuclide-remote-connection/spec/SshHandshake-spec.js
../nuclide/pkg/nuclide-remote-connection/spec/RemoteFile-spec.js
../nuclide/pkg/nuclide-remote-projects/lib/config.js
../nuclide/pkg/nuclide-remote-projects/lib/connection-types.js
Index:
===================================================================
---
+++
@@ -11,12 +11,9 @@
import type {SshHandshake} from '../../nuclide-remote-connection';
-export type NuclideRemoteAuthMethods = /* $FlowFixMe: Flow can't find the PASSWORD property on SupportedMethods.*/
+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/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/IndeterminateProgressBar.js
../nuclide/pkg/nuclide-remote-projects/lib/form-validation-utils.js
../nuclide/pkg/nuclide-remote-projects/lib/notification.js
../nuclide/pkg/nuclide-remote-projects/lib/main.js
../nuclide/pkg/nuclide-remote-projects/lib/open-connection.js
../nuclide/pkg/nuclide-remote-projects/lib/patchAtomWorkspaceReplace.js
../nuclide/pkg/nuclide-remote-projects/lib/connection-profile-utils.js
../nuclide/pkg/nuclide-remote-projects/lib/RemoteDirectoryProvider.js
../nuclide/pkg/nuclide-remote-projects/lib/RemoteProjectsService.js
../nuclide/pkg/nuclide-remote-projects/lib/RemoteProjectsController.js
../nuclide/pkg/nuclide-remote-projects/lib/RemoteDirectorySearcher.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-react-inspector/VendorLib/dev-tools/build/standalone.js
Index:
===================================================================
---
+++
@@ -794,5 +794,4 @@
module.exports = __webpack_require__(7);
-
/***/
},
@@ -988,5 +987,4 @@
return to;
});
-
/***/
},
@@ -5993,5 +5991,4 @@
module.exports = __webpack_require__(42);
-
/***/
},
@@ -6618,5 +6615,4 @@
'\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040'
),
-
/**
* Map from property "standard name" to an object with info about how to set
@@ -6657,5 +6653,4 @@
process.env.NODE_ENV !== 'production' ? {} : null
),
-
/**
* All of the isCustomAttribute() functions that have been injected.
@@ -8187,5 +8182,4 @@
process.env.NODE_ENV !== 'production' ? {} : null
),
-
/**
* Injects an ordering of plugins (by plugin name). This allows the ordering
@@ -8951,5 +8945,4 @@
canUseDOM && !!(window.addEventListener || window.attachEvent)
),
-
canUseViewport: canUseDOM && !!window.screen,
@@ -9150,5 +9143,4 @@
return to;
});
-
/***/
},
@@ -9715,4 +9707,5 @@
}
}
+
/***/
},
@@ -10947,5 +10940,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 ||
@@ -11588,6 +11581,5 @@
}
- var canUseCollections = // Array.from
- typeof Array.from === 'function' &&
+ var canUseCollections = typeof Array.from === 'function' && // Array.from
// Map
typeof Map === 'function' &&
@@ -14237,5 +14229,5 @@
*/
function hasArrayNature(obj) {
- return // not null/false
+ return; // not null/false
!!obj &&
// arrays are objects, NodeLists are functions in Safari
@@ -27144,5 +27136,4 @@
useIEOffsets ? getIEOffsets : getModernOffsets
),
-
/**
* @param {DOMElement|DOMTextNode} node
@@ -29202,16 +29193,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,
@@ -29715,7 +29703,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 ' +
@@ -30815,5 +30802,4 @@
return to;
};
-
/***/
},
@@ -31120,4 +31106,5 @@
return res;
}
+
/***/
},
@@ -32658,7 +32645,13 @@
foo: 'raz',
};
- assign(obj, {bar: 'dwa'}, {
- trzy: 'trzy',
- });
+ assign(
+ obj,
+ {
+ bar: 'dwa',
+ },
+ {
+ trzy: 'trzy',
+ },
+ );
return obj.foo + obj.bar + obj.trzy === 'razdwatrzy';
}; /***/
@@ -32669,5 +32662,5 @@
value = __webpack_require__(225),
max = Math.max;
- module.exports = function(dest, src /*, …srcn*/) {
+ module.exports = function(dest, src) /*, …srcn*/ {
var error, i, l = max(arguments.length, 2), assign;
dest = Object(value(dest));
@@ -32685,5 +32678,6 @@
if (error !== undefined) throw error;
return dest;
- }; /***/
+ };
+ /***/
} /* 222 */ /***/,
function(module, exports, __webpack_require__) {
@@ -32691,5 +32685,6 @@
module.exports = __webpack_require__(223)()
? Object.keys
- : __webpack_require__(224); /***/
+ : __webpack_require__(224);
+ /***/
} /* 223 */ /***/,
function(module, exports) {
@@ -32702,5 +32697,6 @@
return false;
}
- }; /***/
+ };
+ /***/
} /* 224 */ /***/,
function(module, exports) {
@@ -32709,5 +32705,6 @@
module.exports = function(object) {
return keys(object == null ? object : Object(object));
- }; /***/
+ };
+ /***/
} /* 225 */ /***/,
function(module, exports) {
@@ -32716,5 +32713,6 @@
if (value == null) throw new TypeError('Cannot use null or undefined');
return value;
- }; /***/
+ };
+ /***/
} /* 226 */ /***/,
function(module, exports) {
@@ -32726,5 +32724,5 @@
obj[key] = src[key];
};
- module.exports = function(options /*, …options*/) {
+ module.exports = function(options) /*, …options*/ {
var result = create(null);
forEach.call(arguments, function(options) {
@@ -32733,20 +32731,23 @@
});
return result;
- }; /***/
- } /* 227 */ /***/,
- function(module, exports) {
+ };
+ /***/
+ } /* 227 */,
+ /***/ function(module, exports) {
// Deprecated
'use strict';
module.exports = function(obj) {
return typeof obj === 'function';
- }; /***/
- } /* 228 */ /***/,
- function(module, exports, __webpack_require__) {
+ };
+ /***/
+ } /* 228 */,
+ /***/ function(module, exports, __webpack_require__) {
'use strict';
module.exports = __webpack_require__(229)()
? String.prototype.contains
- : __webpack_require__(230); /***/
- } /* 229 */ /***/,
- function(module, exports) {
+ : __webpack_require__(230);
+ /***/
+ } /* 229 */,
+ /***/ function(module, exports) {
'use strict';
var str = 'razdwatrzy';
@@ -32754,14 +32755,16 @@
if (typeof str.contains !== 'function') return false;
return str.contains('dwa') === true && str.contains('foo') === false;
- }; /***/
- } /* 230 */ /***/,
- function(module, exports) {
+ };
+ /***/
+ } /* 230 */,
+ /***/ function(module, exports) {
'use strict';
var indexOf = String.prototype.indexOf;
- module.exports = function(searchString /*, position*/) {
+ module.exports = function(searchString) /*, position*/ {
return indexOf.call(this, searchString, arguments[1]) > -1;
- }; /***/
- } /* 231 */ /***/,
- function(module, exports, __webpack_require__) {
+ };
+ /***/
+ } /* 231 */,
+ /***/ function(module, exports, __webpack_require__) {
'use strict';
var isSymbol = __webpack_require__(232);
@@ -32769,7 +32772,8 @@
if (!isSymbol(value)) throw new TypeError(value + ' is not a symbol');
return value;
- }; /***/
- } /* 232 */ /***/,
- function(module, exports) {
+ };
+ /***/
+ } /* 232 */,
+ /***/ function(module, exports) {
'use strict';
module.exports = function(x) {
@@ -32777,7 +32781,8 @@
(typeof x === 'symbol' || x['@@toStringTag'] === 'Symbol') ||
false;
- }; /***/
- } /* 233 */ /***/,
- function(module, exports, __webpack_require__) {
+ };
+ /***/
+ } /* 233 */,
+ /***/ function(module, exports, __webpack_require__) {
/**
* Copyright (c) 2015-present, Facebook, Inc.
@@ -33449,5 +33454,4 @@
: _prodInvariant('0')
: void 0;
-
var result = [];
for (var key in object) {
@@ -33835,6 +33839,5 @@
* of patent rights can be found in the PATENTS file in the same directory.
*
- */
- 'use strict'; /**
+ */ 'use strict'; /**
* Use invariant() to assert state which your program assumes to be true.
*
@@ -33898,6 +33901,6 @@
key: true,
ref: true,
+
__self: true,
-
__source: true,
};
@@ -34054,5 +34057,4 @@
var ref = null;
var self = null;
-
var source = null;
if (config != null) {
@@ -34126,5 +34128,4 @@
var factory = ReactElement.createElement.bind(null, type); // Expose the type on the factory and the prototype so that it can be // easily accessed on elements. E.g. `<Foo />.type === Foo`. // This should not be named `constructor` since this may not be the function // that created the element, and it may not even be a constructor. // Legacy hook TODO: Warn if this is accessed
factory.type = type;
-
return factory;
};
@@ -34290,6 +34291,5 @@
*
* @providesModule ReactCurrentOwner
- */
- 'use strict'; /**
+ */ 'use strict'; /**
* Keeps track of the current owner.
*
@@ -34301,7 +34301,5 @@
* @internal
* @type {ReactComponent}
- */
-
- current: null,
+ */ current: null,
};
module.exports = ReactCurrentOwner; /***/
@@ -34663,5 +34661,4 @@
*
*/ 'use strict';
-
/* global Symbol */ var ITERATOR_SYMBOL = typeof Symbol === 'function' &&
Symbol.iterator;
@@ -34701,6 +34698,5 @@
* @providesModule KeyEscapeUtils
*
- */
- 'use strict'; /**
+ */ 'use strict'; /**
* Escape and wrap key so it is safe to use as a reactid
*
@@ -35433,5 +35429,4 @@
function MakeRef(ref) {
ref.value = false;
-
return ref;
}
@@ -35492,5 +35487,4 @@
: size === undefined ? index : Math.min(size, index);
}
-
/* global Symbol */ var ITERATE_KEYS = 0;
var ITERATE_VALUES = 1;
@@ -35993,5 +35987,4 @@
return true;
}
-
return false;
}
@@ -36399,5 +36392,4 @@
);
}
-
return hash;
} // Get references to ES5 object methods.
@@ -36414,7 +36406,9 @@
if (node && node.nodeType > 0) {
switch (node.nodeType) {
- case 1: // Element
+ case 1:
+ // Element
return node.uniqueID;
- case 9: // Document
+ case 9:
+ // Document
return node.documentElement && node.documentElement.uniqueID;
}
@@ -36426,5 +36420,4 @@
weakMap = new WeakMap();
}
-
var objHashUID = 0;
var UID_HASH_KEY = '__immutablehash__';
@@ -36460,5 +36453,4 @@
return this.__toString('Map {', '}');
};
-
// @pragma Access
Map.prototype.get = function(k, notSetValue) {
@@ -36650,6 +36642,5 @@
(removed || !exists) && SetRef(didChangeSize);
if (removed && entries.length === 1) {
- return;
- // undefined
+ return; // undefined
}
if (!exists && !removed && entries.length >= MAX_ARRAY_MAP_SIZE) {
@@ -36935,6 +36926,5 @@
if (removed) {
SetRef(didChangeSize);
- return;
- // undefined
+ return; // undefined
}
if (keyMatch) {
@@ -37329,5 +37319,4 @@
return this.__toString('List [', ']');
};
-
// @pragma Access
List.prototype.get = function(index, notSetValue) {
@@ -37696,5 +37685,4 @@
return node;
}
-
SetRef(didAlter);
newNode = editableVNode(node, ownerID);
@@ -37891,5 +37879,4 @@
return this.__toString('OrderedMap {', '}');
};
-
// @pragma Access
OrderedMap.prototype.get = function(k, notSetValue) {
@@ -38925,5 +38912,4 @@
return this.__toString(recordName(this) + ' {', '}');
};
-
// @pragma Access
Record.prototype.has = function(k) {
@@ -39065,5 +39051,4 @@
return this.__toString('Set {', '}');
};
-
// @pragma Access
Set.prototype.has = function(value) {
@@ -39281,5 +39266,4 @@
return this.__toString('Stack [', ']');
};
-
// @pragma Access
Stack.prototype.get = function(index, notSetValue) {
@@ -39467,5 +39451,4 @@
}
Iterable.Iterator = Iterator;
-
mixin(Iterable, {
// ### Conversion to other types
@@ -39836,5 +39819,6 @@
};
IterablePrototype.chain = IterablePrototype.flatMap;
- IterablePrototype.contains = IterablePrototype.includes; // Temporary warning about using length
+ IterablePrototype.contains = IterablePrototype.includes;
+ // Temporary warning about using length
(function() {
try {
@@ -40111,5 +40095,7 @@
}
function hashMerge(a, b) {
- return a ^ b + 0x9e3779b9 + (a << 6) + (a >> 2) | 0; // int
+ return a ^ b + 0x9e3779b9 + (a << 6) + (a >> 2) | 0;
+
+ // int
}
var Immutable = {
@@ -40912,5 +40898,11 @@
}),
!content && '/',
- React.createElement('span', {style: tagStyle}, '>'),
+ React.createElement(
+ 'span',
+ {
+ style: tagStyle,
+ },
+ '>',
+ ),
),
content &&
@@ -41214,5 +41206,6 @@
},
};
- module.exports = WrappedNode; /***/
+ module.exports = WrappedNode;
+ /***/
} /* 263 */,
/***/ function(module, exports, __webpack_require__) {
@@ -41396,5 +41389,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -41570,5 +41562,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -41700,5 +41691,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -41835,6 +41825,6 @@
body: {
flex: 1,
+
display: 'flex',
-
minHeight: 0,
},
@@ -41928,5 +41918,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -41972,5 +41961,4 @@
var Map = _require2.Map;
var Set = _require2.Set;
-
var List = _require2.List;
var assign = __webpack_require__(206);
@@ -42036,5 +42024,4 @@
_this._parents = new Map();
_this._nodesByName = new Map();
-
_this._bridge = bridge; // Public state
_this.roots = new List();
@@ -42088,5 +42075,4 @@
_this._eventQueue = [];
_this._eventTimer = null;
-
return _this;
} // Public state // an object describing the capabilities of the inspected runtime.
@@ -42125,5 +42111,5 @@
this._eventQueue = [];
}
- // Public actions,
+ // Public actions,,
},
{
@@ -42466,5 +42452,5 @@
}
}
- // Public methods,
+ // Public methods,,
},
{
@@ -42571,5 +42557,5 @@
this.changeSearch(this.searchText);
}
- // Private stuff,
+ // Private stuff,,
},
{
@@ -42791,8 +42777,7 @@
'72': 'left', // 'h',
'74': 'down', // 'j',
+
'75': 'up', // 'k',
-
- '76': 'right',
- // 'l',
+ '76': 'right', // 'l',
'37': 'left',
'38': 'up',
@@ -42863,5 +42848,4 @@
}
store.toggleCollapse(id);
-
return undefined;
}
@@ -43019,5 +43003,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -43515,5 +43498,4 @@
});
}
-
module.exports = hydrate; /***/
} /***/ /* 274 */,
@@ -43717,5 +43699,4 @@
),
canUseViewport: canUseDOM && !!window.screen,
-
isInWorker: !canUseDOM, // For now, this is true - might change in the future.
};
@@ -43746,5 +43727,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -43914,5 +43894,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -44080,5 +44059,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -44220,5 +44198,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -44335,5 +44312,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -44462,5 +44438,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -44590,5 +44565,4 @@
var id = _ref2.id;
var error = _ref2.error;
-
var end = _ref2.end;
_this.queries = _this.queries.mergeIn([id], new Map({
@@ -44817,5 +44791,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -44950,5 +44923,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -45147,5 +45119,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -45276,5 +45247,4 @@
containerSelected: _extends({}, baseContainer, {
backgroundColor: '#3879d9',
-
color: 'white',
}),
@@ -45323,5 +45293,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
@@ -45590,5 +45559,4 @@
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
-
return Constructor;
};
../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/generate-proxy-main.js
../nuclide/pkg/nuclide-rpc/lib/index.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/proxy-generator.js
../nuclide/pkg/nuclide-rpc/lib/regenerate-baselines-main.js
../nuclide/pkg/nuclide-rpc/lib/RpcProcess.js
../nuclide/pkg/nuclide-rpc/lib/RpcConnection.js
../nuclide/pkg/nuclide-rpc/lib/service-parser.js
../nuclide/pkg/nuclide-rpc/lib/ServiceRegistry.js
../nuclide/pkg/nuclide-rpc/lib/SocketServer.js
../nuclide/pkg/nuclide-rpc/lib/SocketTransport.js
../nuclide/pkg/nuclide-rpc/lib/StreamTransport.js
../nuclide/pkg/nuclide-rpc/lib/types.js
../nuclide/pkg/nuclide-rpc/spec/BidiService-spec.js
../nuclide/pkg/nuclide-rpc/lib/TypeRegistry.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/CounterService.js
../nuclide/pkg/nuclide-rpc/spec/EchoService-spec.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/NuclideSocket.js
../nuclide/pkg/nuclide-server/lib/QueuedTransport.js
../nuclide/pkg/nuclide-server/lib/services/FileSystemService.js
../nuclide/pkg/nuclide-server/lib/services/InfoService.js
../nuclide/pkg/nuclide-server/lib/services/SourceControlService.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/lib/main.js
../nuclide/pkg/nuclide-source-control-helpers/spec/hg-repository-spec.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/ActionType.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/bookmarkIsEqual.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/applyActionMiddleware.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/SideBarComponent.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/RenameBookmarkModalComponent.js
../nuclide/pkg/nuclide-source-control-side-bar/lib/RepositorySectionComponent.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-helpers/spec/uncachedRequire-spec.js
../nuclide/pkg/nuclide-test-runner/lib/Ansi.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/spec/TestRunModel-spec.js
../nuclide/pkg/nuclide-test-runner/lib/ui/TestRunnerPanel.js
../nuclide/pkg/nuclide-test-runner/spec/TestRunnerController-spec.js
../nuclide/pkg/nuclide-test-runner/spec/TestSuiteModel-spec.js
../nuclide/pkg/nuclide-textedit/lib/main.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/HR.js
../nuclide/pkg/nuclide-ui/Icon.example.js
../nuclide/pkg/nuclide-ui/Icon.js
../nuclide/pkg/nuclide-ui/ignoreTextSelectionEvents.js
../nuclide/pkg/nuclide-ui/highlightOnUpdate.js
../nuclide/pkg/nuclide-ui/LazyNestedValueComponent.js
../nuclide/pkg/nuclide-ui/LazyTreeNode.js
../nuclide/pkg/nuclide-ui/ListView.example.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/MutableListSelector.js
../nuclide/pkg/nuclide-ui/ObservingComponent.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/NuclideCheckbox-spec.js
../nuclide/pkg/nuclide-ui/spec/NuclideDropdown-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/spec/TreeRootComponent-spec.js
../nuclide/pkg/nuclide-ui/Table.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.example.js
../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,8 @@
{...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/VendorLib/atom-tabs/lib/tab-bar-view.js
../nuclide/pkg/nuclide-ui/View.js
../nuclide/pkg/nuclide-ui/VendorLib/atom-tabs/lib/tab-view.js
../nuclide/pkg/nuclide-ui/Webview.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-watchman-helpers/spec/WatchmanClient-spec.js
../nuclide/pkg/nuclide-working-sets/lib/main.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/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/lib/redux/Reducers.js
../nuclide/pkg/nuclide-workspace-views/lib/types.js
../nuclide/pkg/nuclide-workspace-views/spec/Epics-spec.js
../nuclide/pkg/sample-datatip/lib/main.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
Index:
===================================================================
---
+++
@@ -89,5 +89,5 @@
* NuxTour until the predicate evaluates to true.
*/
- // completionPredicate: () => true,,
+ // completionPredicate: () => true,,,
});
const nuxList = Array(numViews)
@@ -114,5 +114,5 @@
* that this cannot be set to true when shipping the NUX.
*/
- // developmentMode: true,,
+ // developmentMode: true,,,
};
}
../nuclide/pkg/sample-quickopen-provider-example/lib/ExampleProvider.js
../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