doit.lua

来自「脚本编程语言」· LUA 代码 · 共 64 行

LUA
64
字号
-- Generate binding code-- Written by Waldemar Celes-- TeCGraf/PUC-Rio-- Jul 1998-- Last update: Apr 2003-- $Id: $-- 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. function doit ()	-- define package name, if not provided	if not flags.n then		if flags.f then			flags.n = gsub(flags.f,"%..*","")		else			error("#no package name nor input file provided")		end	end	-- proccess package	local p  = Package(flags.n,flags.f)	if flags.p then		return        -- only parse	end	if flags.o then		local st,msg = writeto(flags.o)		if not st then			error('#'..msg)		end	end	p:decltype()	if flags.P then		p:print()	else		p:preamble()		p:supcode()		p:register()	end	if flags.o then		writeto()	end	-- write header file	if not flags.P then		if flags.H then			local st,msg = writeto(flags.H)			if not st then				error('#'..msg)			end			p:header()			writeto()		end	endend

⌨️ 快捷键说明

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