blob: 7d0af79528b01b32e650fba54c62a3917389e78f [file] [log] [blame]
--------------------------------------------------------------------------------
-- Copyright (c) 2006-2013 Fabien Fleutot and others.
--
-- All rights reserved.
--
-- This program and the accompanying materials are made available
-- under the terms of the Eclipse Public License v1.0 which
-- accompanies this distribution, and is available at
-- http://www.eclipse.org/legal/epl-v10.html
--
-- This program and the accompanying materials are also made available
-- under the terms of the MIT public license which accompanies this
-- distribution, and is available at http://www.lua.org/license.html
--
-- Contributors:
-- Fabien Fleutot - API and implementation
--
--------------------------------------------------------------------------------
do
local xrequire, n, ind = require, 0, "| "
function require (x)
print(ind:rep(n).."/ require: "..x)
n=n+1
local y = xrequire(x)
n=n-1
print(ind:rep(n).."\\_")
return y
end
end