mirror of
https://github.com/cwbaker/lalr.git
synced 2026-09-26 16:33:18 +03:00
17 lines
387 B
C++
17 lines
387 B
C++
//
|
|
// LuaGlobalEnvironment.cpp
|
|
// Copyright (c) 2008 - 2012 Charles Baker. All rights reserved.
|
|
//
|
|
|
|
#include "LuaGlobalEnvironment.hpp"
|
|
|
|
using namespace sweet::lua;
|
|
|
|
/**
|
|
// Represents the %Lua global environment when adding globals or members.
|
|
*/
|
|
const sweet::lua::LuaGlobalEnvironment sweet::lua::global_environment;
|
|
|
|
LuaGlobalEnvironment::LuaGlobalEnvironment()
|
|
{
|
|
}
|