⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 define.lua

📁 脚本编程语言
💻 LUA
字号:
-- tolua: define class-- Written by Waldemar Celes-- TeCGraf/PUC-Rio-- Jul 1998-- $Id: define.lua,v 1.2 1999/07/28 22:21:08 celes Exp $-- This code is free software; you can redistribute it and/or modify it.-- The software provided hereunder is on an "as is" basis, and-- the author has no obligation to provide maintenance, support, updates,-- enhancements, or modifications. -- Define class-- Represents a numeric const definition-- The following filds are stored:--   name = constant nameclassDefine = { name = '',}classDefine.__index = classDefinesetmetatable(classDefine,classFeature)-- register definefunction classDefine:register () output(' tolua_constant(tolua_S,"'..self.lname..'",'..self.name..');') end-- Print methodfunction classDefine:print (ident,close) print(ident.."Define{") print(ident.." name = '"..self.name.."',") print(ident.." lname = '"..self.lname.."',") print(ident.."}"..close)end-- Internal constructorfunction _Define (t) setmetatable(t,classDefine) t:buildnames() if t.name == '' then  error("#invalid define") end append(t) return tend-- Constructor-- Expects a string representing the constant namefunction Define (n) return _Define{  name = n }end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -