pawn constant

LanguageInfo const pawn

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

Implementation

static const LanguageInfo pawn = LanguageInfo(
  name: 'Pawn',
  type: LanguageType.programming,
  aliases: [],
  extensions: [
    '.pwn',
    '.inc',
    '.sma',
  ],
  filenames: [],
  interpreters: [],
  linguistColor: '#dbb284',
  aceMode: 'text',
  textMateScope: 'source.pawn',
);