apl constant

LanguageInfo const apl

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

Implementation

static const LanguageInfo apl = LanguageInfo(
  name: 'APL',
  type: LanguageType.programming,
  aliases: [],
  extensions: [
    '.apl',
    '.dyalog',
  ],
  filenames: [],
  interpreters: [
    'apl',
    'aplx',
    'dyalog',
  ],
  linguistColor: '#5A8164',
  aceMode: 'text',
  codeMirrorMode: 'apl',
  codeMirrorMimeType: 'text/apl',
  textMateScope: 'source.apl',
);