Add a few more token scopes to themes

Fixes https://github.com/microsoft/vscode/issues/80783
This commit is contained in:
Alex Ross
2019-12-02 11:47:09 +01:00
parent c26146d7c5
commit ef582f49ad
11 changed files with 610 additions and 37 deletions

View File

@@ -16,7 +16,13 @@ void Rectangle::set_values (int x, int y) {
height = y;
}
long double operator "" _w(long double);
#define MY_MACRO(a, b)
int main () {
1.2_w; // calls operator "" _w(1.2L)
asm("movl %a %b");
MY_MACRO(1, 2);
Rectangle rect;
rect.set_values (3,4);
cout << "area: " << rect.area();