aboutsummaryrefslogtreecommitdiff
path: root/src/intercopycontext.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/intercopycontext.h')
-rw-r--r--src/intercopycontext.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/intercopycontext.h b/src/intercopycontext.h
index 459551e..8615842 100644
--- a/src/intercopycontext.h
+++ b/src/intercopycontext.h
@@ -44,36 +44,36 @@ class InterCopyContext
44 lua_State* getErrL() const { return (mode == LookupMode::FromKeeper) ? L2 : L1; } 44 lua_State* getErrL() const { return (mode == LookupMode::FromKeeper) ? L2 : L1; }
45 [[nodiscard]] LuaType processConversion() const; 45 [[nodiscard]] LuaType processConversion() const;
46 46
47 // for use in copy_cached_func 47 // for use in copyCachedFunction
48 void copy_func() const; 48 void copyFunction() const;
49 void lookup_native_func() const; 49 void lookupNativeFunction() const;
50 50
51 // for use in inter_copy_function 51 // for use in inter_copy_function
52 void copy_cached_func() const; 52 void copyCachedFunction() const;
53 [[nodiscard]] bool lookup_table() const; 53 [[nodiscard]] bool lookupTable() const;
54 54
55 // for use in inter_copy_table 55 // for use in inter_copy_table
56 void inter_copy_keyvaluepair() const; 56 void interCopyKeyValuePair() const;
57 [[nodiscard]] bool push_cached_metatable() const; 57 [[nodiscard]] bool pushCachedMetatable() const;
58 [[nodiscard]] bool push_cached_table() const; 58 [[nodiscard]] bool pushCachedTable() const;
59 59
60 // for use in inter_copy_userdata 60 // for use in inter_copy_userdata
61 [[nodiscard]] bool tryCopyClonable() const; 61 [[nodiscard]] bool tryCopyClonable() const;
62 [[nodiscard]] bool tryCopyDeep() const; 62 [[nodiscard]] bool tryCopyDeep() const;
63 63
64 // copying a single Lua stack item 64 // copying a single Lua stack item
65 [[nodiscard]] bool inter_copy_boolean() const; 65 [[nodiscard]] bool interCopyBoolean() const;
66 [[nodiscard]] bool inter_copy_function() const; 66 [[nodiscard]] bool interCopyFunction() const;
67 [[nodiscard]] bool inter_copy_lightuserdata() const; 67 [[nodiscard]] bool interCopyLightuserdata() const;
68 [[nodiscard]] bool inter_copy_nil() const; 68 [[nodiscard]] bool interCopyNil() const;
69 [[nodiscard]] bool inter_copy_number() const; 69 [[nodiscard]] bool interCopyNumber() const;
70 [[nodiscard]] bool inter_copy_string() const; 70 [[nodiscard]] bool interCopyString() const;
71 [[nodiscard]] bool inter_copy_table() const; 71 [[nodiscard]] bool interCopyTable() const;
72 [[nodiscard]] bool inter_copy_userdata() const; 72 [[nodiscard]] bool interCopyUserdata() const;
73 73
74 public: 74 public:
75 [[nodiscard]] bool inter_copy_one() const; 75 [[nodiscard]] InterCopyResult interCopy(int n_) const;
76 [[nodiscard]] InterCopyResult inter_copy_package() const; 76 [[nodiscard]] InterCopyResult interCopyOne() const;
77 [[nodiscard]] InterCopyResult inter_copy(int n_) const; 77 [[nodiscard]] InterCopyResult interCopyPackage() const;
78 [[nodiscard]] InterCopyResult inter_move(int n_) const; 78 [[nodiscard]] InterCopyResult interMove(int n_) const;
79}; 79};