prettier/tests/flow/esproposal_class_instance_f.../__snapshots__/jsfmt.spec.js.snap

23 lines
423 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`test.js 1`] = `
/* @flow */
class Foo {
annotationOnly: string;
initOnly = 'asdf'
initWithAnnotation: string = 'asdf';
[computed]: string;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */
class Foo {
annotationOnly: string;
initOnly = "asdf";
initWithAnnotation: string = "asdf";
[computed]: string;
}
`;