prettier/tests/typescript/conformance/types/parameterProperty/__snapshots__/jsfmt.spec.js.snap

24 lines
723 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`parameterProperty.ts 1`] = `
====================================options=====================================
parsers: ["typescript"]
printWidth: 80
| printWidth
=====================================input======================================
class c3 {
constructor(public arg: number = 10) {
// fails because of comment
}
}
=====================================output=====================================
class c3 {
constructor(public arg: number = 10) {
// fails because of comment
}
}
================================================================================
`;