Adds Pascal language files

This commit is contained in:
Alessandro Fragnani 2019-01-12 23:32:20 -02:00
parent ec16c9c01a
commit 34c155adaa
3 changed files with 317 additions and 0 deletions

View file

@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import { registerLanguage } from '../_.contribution';
registerLanguage({
id: 'pascal',
extensions: ['.pas', '.p', '.pp'],
aliases: ['Pascal', 'pas'],
mimetypes: ['text/x-pascal-source', 'text/x-pascal'],
loader: () => import('./pascal')
});