Jelajahi Sumber

Merge pull request #997 from Yakindu/CTypeSystemAccessTypo

Fixed typos.
Andreas Mülder 9 tahun lalu
induk
melakukan
02defa4654

+ 34 - 34
plugins/org.yakindu.sct.generator.c/src/org/yakindu/sct/generator/c/types/CTypeSystemAccess.xtend

@@ -1,45 +1,45 @@
-/**
- * Copyright (c) 2012 committers of YAKINDU 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:
- *     committers of YAKINDU - initial API and implementation
+/**
+ * Copyright (c) 2012 committers of YAKINDU 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:
+ *     committers of YAKINDU - initial API and implementation
  */
-package org.yakindu.sct.generator.c.types
-
-import com.google.inject.Inject
-import org.yakindu.base.types.Type
-import org.yakindu.base.types.TypeSpecifier
-import org.yakindu.base.types.typesystem.ITypeSystem
-import org.yakindu.sct.generator.core.types.ICodegenTypeSystemAccess
-
-import static org.yakindu.base.types.typesystem.ITypeSystem.*
-
-/**
- * @author andreas muelder
+package org.yakindu.sct.generator.c.types
+
+import com.google.inject.Inject
+import org.yakindu.base.types.Type
+import org.yakindu.base.types.TypeSpecifier
+import org.yakindu.base.types.typesystem.ITypeSystem
+import org.yakindu.sct.generator.core.types.ICodegenTypeSystemAccess
+
+import static org.yakindu.base.types.typesystem.ITypeSystem.*
+
+/**
+ * @author andreas muelder
  */
 class CTypeSystemAccess implements ICodegenTypeSystemAccess {
 
 	@Inject
-	extension ITypeSystem ts
+	extension ITypeSystem
 
-	override getTargetLanguageName(Type type) {
-		val originialType = type?.originType
-		switch (originialType) {
-			case originialType == null || ts.isSame(originialType, getType(VOID)) : 'void'
-			case ts.isSame(originialType, getType(INTEGER)): 'sc_integer'
-			case ts.isSame(originialType, getType(REAL)): 'sc_real'
-			case ts.isSame(originialType, getType(BOOLEAN)): 'sc_boolean'
-			case ts.isSame(originialType, getType(STRING)): 'sc_string'
+	override getTargetLanguageName(Type type) {
+		val originalType = type?.originType
+		switch (originalType) {
+			case originalType == null || isSame(originalType, getType(VOID)) : 'void'
+			case isSame(originalType, getType(INTEGER)): 'sc_integer'
+			case isSame(originalType, getType(REAL)): 'sc_real'
+			case isSame(originalType, getType(BOOLEAN)): 'sc_boolean'
+			case isSame(originalType, getType(STRING)): 'sc_string'
 			default: throw new IllegalArgumentException("Target language name could not be inferred for type " + type)
 		}
-	}
-	
-	override getTargetLanguageName(TypeSpecifier typeSpecifier) {
-		return getTargetLanguageName(typeSpecifier?.type)
+	}
+	
+	override getTargetLanguageName(TypeSpecifier typeSpecifier) {
+		return getTargetLanguageName(typeSpecifier?.type)
 	}
 
 }