From b2f2b36b7c77859860a68aa6991a3768a680ad5f Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Fri, 21 Apr 2017 17:35:15 +0100 Subject: [PATCH] Remove subassembly --- docs/julia.rst | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/julia.rst b/docs/julia.rst index 988f19802..054f8627e 100644 --- a/docs/julia.rst +++ b/docs/julia.rst @@ -75,8 +75,7 @@ Grammar:: Expression | Switch | ForLoop | - BreakContinue | - SubAssembly + BreakContinue FunctionDefinition = 'function' Identifier '(' TypedIdentifierList? ')' ( '->' TypedIdentifierList )? Block @@ -94,8 +93,6 @@ Grammar:: 'for' Block Expression Block Block BreakContinue = 'break' | 'continue' - SubAssembly = - 'assembly' Identifier Block FunctionCall = Identifier '(' ( Expression ( ',' Expression )* )? ')' Identifier = [a-zA-Z_$] [a-zA-Z_0-9]*