22 * @file BytecodeReader.hpp 
33 * @author Alexandre Plateau (lexplt.dev@gmail.com) 
44 * @brief A bytecode disassembler for ArkScript 
5-  * @version 0.3  
5+  * @version 0.4  
66 * @date 2020-10-27 
7-  *   
8-  * @copyright Copyright (c) 2020-2021  
9-  *   
7+  * 
8+  * @copyright Copyright (c) 2020-2022  
9+  * 
1010 */  
1111
1212#ifndef  ARK_COMPILER_BYTECODEREADER_HPP
@@ -37,35 +37,35 @@ namespace Ark
3737     * @brief This class is just a helper to 
3838     * - check if a bytecode is valid 
3939     * - display it in a human readable way by using the opcode names 
40-      *   
40+      * 
4141     */  
4242    class  ARK_API  BytecodeReader
4343    {
4444    public: 
4545        /* *
4646         * @brief Construct a new Bytecode Reader object 
47-          *   
47+          * 
4848         */  
4949        BytecodeReader () = default ;
5050
5151        /* *
5252         * @brief Construct needed data before displaying information about a given file 
53-          *   
53+          * 
5454         * @param file filename of the bytecode file 
5555         */  
5656        void  feed (const  std::string& file);
5757
5858        /* *
5959         * @brief Return the bytecode object constructed 
60-          *   
61-          * @return const bytecode_t&   
60+          * 
61+          * @return const bytecode_t& 
6262         */  
6363        const  bytecode_t & bytecode () noexcept ;
6464
6565        /* *
6666         * @brief Return the read timestamp from the bytecode file 
67-          *   
68-          * @return unsigned long long   
67+          * 
68+          * @return unsigned long long 
6969         */  
7070        unsigned  long  long  timestamp ();
7171
@@ -87,7 +87,7 @@ namespace Ark
8787
8888        /* *
8989         * @brief Read a number from the bytecode, under the instruction pointer i 
90-          *   
90+          * 
9191         * @param i this parameter is being modified to point to the next value 
9292         * @return uint16_t the number we read (big endian) 
9393         */  
0 commit comments