prettier/tests/typescript_comments/__snapshots__/jsfmt.spec.js.snap

232 lines
5.1 KiB
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`abstract_class.ts 1`] = `
abstract class AbstractRule {
/**
* @deprecated
* Failures will be filtered based on \`tslint:disable\` comments by tslint.
* This method now does nothing.
*/
filterFailures() {}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
abstract class AbstractRule {
/**
* @deprecated
* Failures will be filtered based on \`tslint:disable\` comments by tslint.
* This method now does nothing.
*/
filterFailures() {}
}
`;
exports[`jsx.ts 1`] = `
var example1 = <div>
https://test
</div>;
var example2 = <div>
/*test*/
</div>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
var example1 = <div>https://test</div>;
var example2 = <div>/*test*/</div>;
`;
exports[`location.ts 1`] = `
function x({
x,
y,
}: {
// Hello world.
x: string,
// Yoyo.
y: string,
}) {}
export interface ApplicationEventData {
registerBroadcastReceiver(onReceiveCallback: (
context: any /* android.content.Context */,
intent: any /* android.content.Intent */
) => void): void;
}
export type WrappedFormUtils = {
getFieldDecorator(id: string, options?: {
/** 子节点的值的属性,如 Checkbox 的是 'checked' */
valuePropName?: string;
/** 子节点的初始值,类型、可选值均由子节点决定 */
initialValue?: any;
/** 收集子节点的值的时机 */
trigger?: string;
/** 可以把 onChange 的参数转化为控件的值,例如 DatePicker 可设为:(date, dateString) => dateString */
getValueFromEvent?: (...args: any[]) => any;
/** 校验子节点值的时机 */
validateTrigger?: string | string[];
/** 校验规则,参见 [async-validator](https://github.com/yiminghe/async-validator) */
rules?: ValidationRule[];
/** 是否和其他控件互斥,特别用于 Radio 单选控件 */
exclusive?: boolean;
}): (node: React.ReactNode) => React.ReactNode;
};
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function x({
x,
y
}: {
// Hello world.
x: string;
// Yoyo.
y: string;
}) {}
export interface ApplicationEventData {
registerBroadcastReceiver(
onReceiveCallback: (
context: any /* android.content.Context */,
intent: any /* android.content.Intent */
) => void
): void;
}
export type WrappedFormUtils = {
getFieldDecorator(
id: string,
options?: {
/** 子节点的值的属性,如 Checkbox 的是 'checked' */
valuePropName?: string;
/** 子节点的初始值,类型、可选值均由子节点决定 */
initialValue?: any;
/** 收集子节点的值的时机 */
trigger?: string;
/** 可以把 onChange 的参数转化为控件的值,例如 DatePicker 可设为:(date, dateString) => dateString */
getValueFromEvent?: (...args: any[]) => any;
/** 校验子节点值的时机 */
validateTrigger?: string | string[];
/** 校验规则,参见 [async-validator](https://github.com/yiminghe/async-validator) */
rules?: ValidationRule[];
/** 是否和其他控件互斥,特别用于 Radio 单选控件 */
exclusive?: boolean;
}
): (node: React.ReactNode) => React.ReactNode;
};
`;
exports[`methods.ts 1`] = `
export class Point {
/**
* Does something.
*/
foo() {}
/**
* Does something else.
*/
bar() {}
/**
* Does
* something
* much
* better
* than
* the
* rest.
*/
baz() {}
/**
* Buzz-Fizz.
* Note: This is indented too far.
*/
fizzBuzz() {}
/**
* Turns the given string into pig-latin.
*/
pigLatinize(value: string) {
/**
* This is a block comment inside of a method.
*/
}
/**
* One
* Two
* Three
* Four
*/
mismatchedIndentation() {}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
export class Point {
/**
* Does something.
*/
foo() {}
/**
* Does something else.
*/
bar() {}
/**
* Does
* something
* much
* better
* than
* the
* rest.
*/
baz() {}
/**
* Buzz-Fizz.
* Note: This is indented too far.
*/
fizzBuzz() {}
/**
* Turns the given string into pig-latin.
*/
pigLatinize(value: string) {
/**
* This is a block comment inside of a method.
*/
}
/**
* One
* Two
* Three
* Four
*/
mismatchedIndentation() {}
}
`;
exports[`type-parameters.ts 1`] = `
functionName<A /* A comment */>();
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
functionName<A /* A comment */>();
`;
exports[`types.ts 1`] = `
(() => {
// swallow error and fallback to using directory as path
}) as string[];
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
(() => {
// swallow error and fallback to using directory as path
}) as string[];
`;