Browse Source

[PATCH 058/188] hidding EParserError class into the implementation

From d7a0c077cd6410f94f92e43252956236f803ab8e Mon Sep 17 00:00:00 2001
From: Dmitry Boyarintsev <[email protected]>
Date: Tue, 3 Mar 2020 09:30:59 -0500

git-svn-id: branches/wasm@46054 -
nickysn 5 years ago
parent
commit
91571e6569
1 changed files with 2 additions and 2 deletions
  1. 2 2
      utils/wasmbin/watparser.pas

+ 2 - 2
utils/wasmbin/watparser.pas

@@ -37,6 +37,8 @@ const
 function ParseModule(sc: TWatScanner; dst: TWasmModule; var errMsg: string): Boolean; overload;
 function ParseModule(sc: TWatScanner; dst: TWasmModule; out err: TParseResult): Boolean; overload;
 
+implementation
+
 type
   // used to stop the recursive parsing
 
@@ -47,8 +49,6 @@ type
     constructor Create(const amsg: string; aofs: integer);
   end;
 
-implementation
-
 const
   WAT_DEFTYPES='iN or fN';