IronPython.Compiler.Ast.ConstantExpression.MakeUnicode C# (CSharp) Method

MakeUnicode() static private method

static private MakeUnicode ( string value ) : ConstantExpression
value string
return ConstantExpression
        internal static ConstantExpression MakeUnicode(string value) {
            return new ConstantExpression(new UnicodeWrapper(value));
        }