mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 20:55:18 -07:00
unittest: Remove remaining moonscript references
This commit is contained in:
parent
38b7b4405e
commit
7b41fb383a
@ -215,7 +215,6 @@ end
|
||||
-- uncomment the following lines (and comment the return) for standalone
|
||||
-- operation (very handy for debugging)
|
||||
local function standalone(...)
|
||||
require "moonscript"
|
||||
Preprocess = require("preprocess")
|
||||
Preprocess.add_to_include_path('./../../src')
|
||||
Preprocess.add_to_include_path('./../../build/include')
|
||||
|
@ -13,11 +13,11 @@ local NULL = helpers.NULL
|
||||
local garray = cimport('./src/nvim/garray.h')
|
||||
|
||||
-- define a basic interface to garray. We could make it a lot nicer by
|
||||
-- constructing a moonscript class wrapper around garray. It could for
|
||||
-- example associate ga_clear_strings to the underlying garray cdata if the
|
||||
-- garray is a string array. But for now I estimate that that kind of magic
|
||||
-- might make testing less "transparant" (i.e.: the interface would become
|
||||
-- quite different as to how one would use it from C.
|
||||
-- constructing a class wrapper around garray. It could for example associate
|
||||
-- ga_clear_strings to the underlying garray cdata if the garray is a string
|
||||
-- array. But for now I estimate that that kind of magic might make testing
|
||||
-- less "transparant" (i.e.: the interface would become quite different as to
|
||||
-- how one would use it from C.
|
||||
|
||||
-- accessors
|
||||
function ga_len(garr)
|
||||
|
Loading…
Reference in New Issue
Block a user