diff trunk/src/dil/ast/Statements.d @ 681:95a3c28c0f64

Renamed AsmStatement->AsmBlockStatement and AsnInstruction->AsmStatement.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 19 Jan 2008 00:10:57 +0100
parents 6b3e397229c5
children 7541c64fc423
line wrap: on
line diff
--- a/trunk/src/dil/ast/Statements.d	Fri Jan 18 23:59:41 2008 +0100
+++ b/trunk/src/dil/ast/Statements.d	Sat Jan 19 00:10:57 2008 +0100
@@ -416,7 +416,7 @@
   }
 }
 
-class AsmStatement : Statement
+class AsmBlockStatement : Statement
 {
   CompoundStatement statements;
   this(CompoundStatement statements)
@@ -427,7 +427,7 @@
   }
 }
 
-class AsmInstruction : Statement
+class AsmStatement : Statement
 {
   Identifier* ident;
   Expression[] operands;
@@ -450,7 +450,7 @@
   }
 }
 
-class IllegalAsmInstruction : IllegalStatement
+class IllegalAsmStatement : IllegalStatement
 {
   this()
   {