Also remove license headers from Lua.

pull/13171/head
Josh Haberman 10 years ago
parent c09ec32f5c
commit 5b44720f8f
  1. 5
      tools/dump_cinit.lua
  2. 5
      tools/test_cinit.lua
  3. 5
      tools/upbc.lua
  4. 8
      upb/bindings/lua/upb.lua
  5. 8
      upb/bindings/lua/upb/pb.lua
  6. 8
      upb/bindings/lua/upb/table.lua

@ -1,10 +1,5 @@
--[[
upb - a minimalist implementation of protocol buffers.
Copyright (c) 2012 Google Inc. See LICENSE for details.
Author: Josh Haberman <jhaberman@gmail.com>
Routines for dumping internal data structures into C initializers
that can be compiled into a .o file.

@ -1,10 +1,5 @@
--[[
upb - a minimalist implementation of protocol buffers.
Copyright (c) 2012 Google Inc. See LICENSE for details.
Author: Josh Haberman <jhaberman@gmail.com>
Tests for dump_cinit.lua. Runs first in a mode that generates
some C code for an extension. The C code is compiled and then
loaded by a second invocation of the test which checks that the

@ -1,10 +1,5 @@
--[[
upb - a minimalist implementation of protocol buffers.
Copyright (c) 2012 Google Inc. See LICENSE for details.
Author: Josh Haberman <jhaberman@gmail.com>
The upb compiler. Unlike the proto2 compiler, this does
not output any parsing code or generated classes or anything
specific to the protobuf binary format at all. At the moment

@ -1,11 +1,3 @@
--[[--------------------------------------------------------------------
upb - a minimalist implementation of protocol buffers.
Copyright (c) 2009 Google Inc. See LICENSE for details.
Author: Josh Haberman <jhaberman@gmail.com>
--------------------------------------------------------------------]]--
-- Before calling require on "upb_c", we need to load the same library
-- as RTLD_GLOBAL, for the benefit of other C extensions that depend on

@ -1,11 +1,3 @@
--[[--------------------------------------------------------------------
upb - a minimalist implementation of protocol buffers.
Copyright (c) 2009 Google Inc. See LICENSE for details.
Author: Josh Haberman <jhaberman@gmail.com>
--------------------------------------------------------------------]]--
require "upb"
return require "upb.pb_c"

@ -1,11 +1,3 @@
--[[--------------------------------------------------------------------
upb - a minimalist implementation of protocol buffers.
Copyright (c) 2009 Google Inc. See LICENSE for details.
Author: Josh Haberman <jhaberman@gmail.com>
--------------------------------------------------------------------]]--
require "upb"
return require "upb.table_c"

Loading…
Cancel
Save