mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +02:00
Fix for bug 212417
This commit is contained in:
parent
5801276291
commit
0658cb9937
1 changed files with 5 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.core.dom.upc;
|
package org.eclipse.cdt.core.dom.upc;
|
||||||
|
|
||||||
|
import org.eclipse.cdt.core.dom.ILinkage;
|
||||||
import org.eclipse.cdt.core.dom.c99.BaseExtensibleLanguage;
|
import org.eclipse.cdt.core.dom.c99.BaseExtensibleLanguage;
|
||||||
import org.eclipse.cdt.core.dom.c99.IC99TokenCollector;
|
import org.eclipse.cdt.core.dom.c99.IC99TokenCollector;
|
||||||
import org.eclipse.cdt.core.dom.c99.IKeywordMap;
|
import org.eclipse.cdt.core.dom.c99.IKeywordMap;
|
||||||
|
@ -53,6 +54,10 @@ public class UPCLanguage extends BaseExtensibleLanguage {
|
||||||
return ID;
|
return ID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getLinkageID() {
|
||||||
|
return ILinkage.C_LINKAGE_ID;
|
||||||
|
}
|
||||||
|
|
||||||
public String getName() {
|
public String getName() {
|
||||||
// TODO: this has to be read from a message bundle
|
// TODO: this has to be read from a message bundle
|
||||||
return "UPC";//$NON-NLS-1$
|
return "UPC";//$NON-NLS-1$
|
||||||
|
|
Loading…
Add table
Reference in a new issue