From 70201e9273becee9bdb5b6f7c04f32654142a881 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Thu, 6 Oct 2016 22:37:57 +0100 Subject: [PATCH] Document the reserved keywords --- docs/miscellaneous.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index d00ffbe39..c4a954add 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -339,3 +339,11 @@ Modifiers - ``anonymous`` for events: Does not store event signature as topic. - ``indexed`` for event parameters: Stores the parameter as topic. - ``payable`` for functions: Allows them to receive Ether together with a call. + +Reserved Keywords +================= + +These keywords are reserved in Solidity. They might become part of the syntax in the future: + +``abstract``, ``after``, ``case``, ``catch``, ``final``, ``in``, ``inline``, ``interface``, ``let``, ``match``, +``of``, ``pure``, ``relocatable``, ``static``, ``switch``, ``try``, ``type``, ``typeof``, ``view``.