summaryrefslogtreecommitdiff
path: root/xmake/core/sandbox/modules/interpreter
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/core/sandbox/modules/interpreter')
-rw-r--r--xmake/core/sandbox/modules/interpreter/format.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/getenv.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/ifelse.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/ipairs.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/os.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/pairs.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/path.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/print.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/printf.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/string.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/table.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/tonumber.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/tostring.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/type.lua2
-rw-r--r--xmake/core/sandbox/modules/interpreter/unpack.lua2
15 files changed, 15 insertions, 15 deletions
diff --git a/xmake/core/sandbox/modules/interpreter/format.lua b/xmake/core/sandbox/modules/interpreter/format.lua
index c86f131b0..862edde63 100644
--- a/xmake/core/sandbox/modules/interpreter/format.lua
+++ b/xmake/core/sandbox/modules/interpreter/format.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file format.lua
diff --git a/xmake/core/sandbox/modules/interpreter/getenv.lua b/xmake/core/sandbox/modules/interpreter/getenv.lua
index 91bab9d1f..1c23196b6 100644
--- a/xmake/core/sandbox/modules/interpreter/getenv.lua
+++ b/xmake/core/sandbox/modules/interpreter/getenv.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file getenv.lua
diff --git a/xmake/core/sandbox/modules/interpreter/ifelse.lua b/xmake/core/sandbox/modules/interpreter/ifelse.lua
index 9753684c8..342d01e30 100644
--- a/xmake/core/sandbox/modules/interpreter/ifelse.lua
+++ b/xmake/core/sandbox/modules/interpreter/ifelse.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file ifelse.lua
diff --git a/xmake/core/sandbox/modules/interpreter/ipairs.lua b/xmake/core/sandbox/modules/interpreter/ipairs.lua
index c440a4739..3aacff566 100644
--- a/xmake/core/sandbox/modules/interpreter/ipairs.lua
+++ b/xmake/core/sandbox/modules/interpreter/ipairs.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file ipairs.lua
diff --git a/xmake/core/sandbox/modules/interpreter/os.lua b/xmake/core/sandbox/modules/interpreter/os.lua
index 098de5047..3ec2cf120 100644
--- a/xmake/core/sandbox/modules/interpreter/os.lua
+++ b/xmake/core/sandbox/modules/interpreter/os.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file os.lua
diff --git a/xmake/core/sandbox/modules/interpreter/pairs.lua b/xmake/core/sandbox/modules/interpreter/pairs.lua
index 8615dffd0..73f7010df 100644
--- a/xmake/core/sandbox/modules/interpreter/pairs.lua
+++ b/xmake/core/sandbox/modules/interpreter/pairs.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file pairs.lua
diff --git a/xmake/core/sandbox/modules/interpreter/path.lua b/xmake/core/sandbox/modules/interpreter/path.lua
index 2a9ce8018..040ad1c81 100644
--- a/xmake/core/sandbox/modules/interpreter/path.lua
+++ b/xmake/core/sandbox/modules/interpreter/path.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file path.lua
diff --git a/xmake/core/sandbox/modules/interpreter/print.lua b/xmake/core/sandbox/modules/interpreter/print.lua
index d32af0fd6..6a10edaae 100644
--- a/xmake/core/sandbox/modules/interpreter/print.lua
+++ b/xmake/core/sandbox/modules/interpreter/print.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file print.lua
diff --git a/xmake/core/sandbox/modules/interpreter/printf.lua b/xmake/core/sandbox/modules/interpreter/printf.lua
index 358716c13..783436bec 100644
--- a/xmake/core/sandbox/modules/interpreter/printf.lua
+++ b/xmake/core/sandbox/modules/interpreter/printf.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file printf.lua
diff --git a/xmake/core/sandbox/modules/interpreter/string.lua b/xmake/core/sandbox/modules/interpreter/string.lua
index a9aebcb7e..1525a840f 100644
--- a/xmake/core/sandbox/modules/interpreter/string.lua
+++ b/xmake/core/sandbox/modules/interpreter/string.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file string.lua
diff --git a/xmake/core/sandbox/modules/interpreter/table.lua b/xmake/core/sandbox/modules/interpreter/table.lua
index ce52b5e75..5c7edbb50 100644
--- a/xmake/core/sandbox/modules/interpreter/table.lua
+++ b/xmake/core/sandbox/modules/interpreter/table.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file table.lua
diff --git a/xmake/core/sandbox/modules/interpreter/tonumber.lua b/xmake/core/sandbox/modules/interpreter/tonumber.lua
index 2329bb4d3..c9d5d2ec6 100644
--- a/xmake/core/sandbox/modules/interpreter/tonumber.lua
+++ b/xmake/core/sandbox/modules/interpreter/tonumber.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file tonumber.lua
diff --git a/xmake/core/sandbox/modules/interpreter/tostring.lua b/xmake/core/sandbox/modules/interpreter/tostring.lua
index ce745df5e..60591e249 100644
--- a/xmake/core/sandbox/modules/interpreter/tostring.lua
+++ b/xmake/core/sandbox/modules/interpreter/tostring.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file tostring.lua
diff --git a/xmake/core/sandbox/modules/interpreter/type.lua b/xmake/core/sandbox/modules/interpreter/type.lua
index 7645a9ef4..6036fe463 100644
--- a/xmake/core/sandbox/modules/interpreter/type.lua
+++ b/xmake/core/sandbox/modules/interpreter/type.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file type.lua
diff --git a/xmake/core/sandbox/modules/interpreter/unpack.lua b/xmake/core/sandbox/modules/interpreter/unpack.lua
index 863aac397..2874a915d 100644
--- a/xmake/core/sandbox/modules/interpreter/unpack.lua
+++ b/xmake/core/sandbox/modules/interpreter/unpack.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+-- Copyright (C) 2015 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file unpack.lua