|
|
|
@ -236,17 +236,17 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
@@ -236,17 +236,17 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
|
|
|
|
|
{ |
|
|
|
|
#if ROSLYN && OPT
|
|
|
|
|
IEnumerable<char> obj = (test ? (from c in Enumerable.Range(0, 255) |
|
|
|
|
where char.IsLetter((char)c) |
|
|
|
|
select (char)c) : (from c in Enumerable.Range(0, 255) |
|
|
|
|
where char.IsDigit((char)c) |
|
|
|
|
select (char)c)); |
|
|
|
|
where char.IsLetter((char)c) |
|
|
|
|
select (char)c) : (from c in Enumerable.Range(0, 255) |
|
|
|
|
where char.IsDigit((char)c) |
|
|
|
|
select (char)c)); |
|
|
|
|
return obj.Concat(obj); |
|
|
|
|
#else
|
|
|
|
|
IEnumerable<char> enumerable = (test ? (from c in Enumerable.Range(0, 255) |
|
|
|
|
where char.IsLetter((char)c) |
|
|
|
|
select (char)c) : (from c in Enumerable.Range(0, 255) |
|
|
|
|
where char.IsDigit((char)c) |
|
|
|
|
select (char)c)); |
|
|
|
|
where char.IsLetter((char)c) |
|
|
|
|
select (char)c) : (from c in Enumerable.Range(0, 255) |
|
|
|
|
where char.IsDigit((char)c) |
|
|
|
|
select (char)c)); |
|
|
|
|
return enumerable.Concat(enumerable); |
|
|
|
|
#endif
|
|
|
|
|
} |
|
|
|
|