-class const:
- def __new__(self, x):
- return x
+def const(x):
+ return x
+
+
+def native(f):
+ return f
+
+
+def viper(f):
+ raise SyntaxError("invalid micropython decorator")
+
+
+def asm_thumb(f):
+ raise SyntaxError("invalid micropython decorator")
\ No newline at end of file