reason constant

LanguageInfo const reason

The information provided by linguist about the "Reason" language or content type.

Implementation

static const LanguageInfo reason = LanguageInfo(
  name: 'Reason',
  type: LanguageType.programming,
  aliases: [],
  extensions: [
    '.re',
    '.rei',
  ],
  filenames: [],
  interpreters: [],
  linguistColor: '#ff5847',
  aceMode: 'rust',
  codeMirrorMode: 'rust',
  codeMirrorMimeType: 'text/x-rustsrc',
  textMateScope: 'source.reason',
);