Example #1
0
/*---------------------------------------------------------------------------------------------
 *  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 {language} from 'vs/editor/standalone-languages/cpp';
import {testOnEnter, testTokenization} from 'vs/editor/standalone-languages/test/testUtil';

testOnEnter('cpp', language, (assertOnEnter) => {
	assertOnEnter.nothing('', ' a', '');
	assertOnEnter.indents('', ' <', '');
	assertOnEnter.indents('', ' {', '');
	assertOnEnter.indents('', '( ', '');
	assertOnEnter.indents('', ' [ ', '');
	assertOnEnter.indentsOutdents('', ' { ', ' } ');
});

testTokenization('cpp', language, [
	// Keywords
	[{
	line: 'int _tmain(int argc, _TCHAR* argv[])',
	tokens: [
		{ startIndex: 0, type: 'keyword.int.cpp' },
		{ startIndex: 3, type: '' },
		{ startIndex: 4, type: 'identifier.cpp' },
		{ startIndex: 10, type: 'delimiter.parenthesis.cpp' },
		{ startIndex: 11, type: 'keyword.int.cpp' },
		{ startIndex: 14, type: '' },
		{ startIndex: 15, type: 'identifier.cpp' },
Example #2
0
		{ startIndex: 0, type: '' },
		{ startIndex: 5, type: 'string.bat' },
		{ startIndex: 13, type: 'variable.bat' },
		{ startIndex: 16, type: 'string.bat' }
	]}, {
	line: '	non terminated "string %%aaa sdf',
	tokens: [
		{ startIndex: 0, type: '' },
		{ startIndex: 16, type: 'string.bat' },
		{ startIndex: 24, type: 'variable.bat' },
		{ startIndex: 29, type: 'string.bat' }
	]}, {
	line: '	this shold NOT BE red',
	tokens: [
		{ startIndex: 0, type: '' },
		{ startIndex: 12, type: 'support.function.not.bat' },
		{ startIndex: 15, type: '' }
	]}, {
	line: ')',
	tokens: [
		{ startIndex: 0, type: 'punctuation.parenthesis.bat' }
	]}]
]);

testOnEnter('bat', conf, (assertOnEnter) => {
	assertOnEnter.nothing('', ' a', '');
	assertOnEnter.indents('', ' {', '');
	assertOnEnter.indents('', '( ', '');
	assertOnEnter.indents('', ' [ ', '');
	assertOnEnter.indentsOutdents('', ' { ', ' } ');
});