Exemplo n.º 1
0
        /// <summary>
        /// Defines a new local variable for this constructor
        /// </summary>
        /// <param name="type">The type of the variable</param>
        /// <param name="identifier">The identifier of the variable</param>
        /// <returns>A UserLocal instance representing the local variable</returns>
        public UserLocal DefineLocal(IdEntry type, string identifier)
        {
            UserLocal local = new UserLocal(type, identifier);

            return(local);
        }