Skip to content

Commit 4df615f

Browse files
authored
Merge pull request #11922 from michaelnebel/csharp11/strings
C# 11: String related functionality.
2 parents ca5916f + 0b04654 commit 4df615f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+14727
-5904
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Expression extends @expr {
2+
string toString() { none() }
3+
}
4+
5+
class TypeOrRef extends @type_or_ref {
6+
string toString() { none() }
7+
}
8+
9+
from Expression e, int k, int kind, TypeOrRef t
10+
where
11+
expressions(e, k, t) and
12+
if k = 135 then kind = 106 else kind = k
13+
select e, kind, t

0 commit comments

Comments
 (0)