diff --git a/languages.json b/languages.json index ff541affd..00fa791b8 100644 --- a/languages.json +++ b/languages.json @@ -1142,7 +1142,7 @@ ["(*", "*)"], ["/*", "*/"] ], - "extensions": ["mll", "mly", "vy"] + "extensions": ["mll", "mly"] }, "Meson": { "line_comment": ["#"], @@ -2029,6 +2029,13 @@ "important_syntax": [" String[64]: + this_ends: String[32] = "a \"test#." + self._call1() + self._call2() + this_does_not: String[64] = "# nested # phrase \" #" + return this_does_not + +@external +def foobar() -> bool: + does_not_start: String[64] = "until here, test# test" # a quote: " + also_doesnt_start: String[64] = "until here, test,# test" # another quote: " + return True + +@external +def foo_again() -> uint256: + a: uint256 = 4 # # + b: uint256 = 5 + c: uint256 = 6 # # + return a + b + c