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

21 lines
380 B
Plaintext

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