1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

RESOLVED - bug 184499: [C99 parser] add support for digraph and trigraph sequences

https://bugs.eclipse.org/bugs/show_bug.cgi?id=184499

Patch from Mike Kucera
This commit is contained in:
Chris Recoskie 2007-04-30 19:11:52 +00:00
parent 1c4651b151
commit 9edb298740
2 changed files with 32 additions and 0 deletions

View file

@ -30,6 +30,7 @@ public class AutomatedIntegrationSuite extends TestSuite {
suite.addTestSuite(UPCC99SpecTests.class);
suite.addTestSuite(UPCC99Tests.class);
suite.addTestSuite(UPCLanguageExtensionTests.class);
suite.addTestSuite(UPCC99DigraphTrigraphTests.class);
return suite;
}

View file

@ -0,0 +1,31 @@
/*******************************************************************************
* Copyright (c) 2006, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.core.parser.upc.tests;
import org.eclipse.cdt.core.dom.c99.C99Language;
import org.eclipse.cdt.core.dom.upc.UPCLanguage;
import org.eclipse.cdt.core.parser.c99.tests.C99DigraphTrigraphTests;
public class UPCC99DigraphTrigraphTests extends C99DigraphTrigraphTests {
public UPCC99DigraphTrigraphTests() {
super();
}
public UPCC99DigraphTrigraphTests(String name) {
super(name);
}
protected C99Language getC99Language() {
return new UPCLanguage();
}
}