comparison trunk/src/dil/semantic/Interpreter.d @ 754:c7a5499faa77

Improved DDoc related code.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Wed, 13 Feb 2008 17:10:55 +0100
parents 56100b270897
children 5fe89bb8cbdd
comparison
equal deleted inserted replaced
753:6efa938dbef7 754:c7a5499faa77
60 case NK.IntExpression, NK.RealExpression, 60 case NK.IntExpression, NK.RealExpression,
61 NK.ComplexExpression, NK.CharExpression, 61 NK.ComplexExpression, NK.CharExpression,
62 NK.BoolExpression, NK.StringExpression: 62 NK.BoolExpression, NK.StringExpression:
63 return true; 63 return true;
64 default: 64 default:
65 return false;
66 } 65 }
66 return false;
67 } 67 }
68 } 68 }