The following code causes an error:
```
_eval = new ExpressionContext();
IDynamicExpression expr = _eval.CompilerDynamic( "+2" );
```
The '+' sign is rejected when it should not be.
```
_eval = new ExpressionContext();
IDynamicExpression expr = _eval.CompilerDynamic( "+2" );
```
The '+' sign is rejected when it should not be.