mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
use name here
This commit is contained in:
parent
791e015bbe
commit
c7be4dcb38
@ -305,7 +305,7 @@ return {
|
||||
{
|
||||
"string",
|
||||
'"',
|
||||
node[2]
|
||||
self:name(node[2])
|
||||
}
|
||||
}
|
||||
})
|
||||
@ -327,7 +327,7 @@ return {
|
||||
{
|
||||
"string",
|
||||
'"',
|
||||
node[2]
|
||||
self:name(node[2])
|
||||
}
|
||||
}
|
||||
})
|
||||
|
@ -185,7 +185,7 @@ string_chars = {
|
||||
self: (node) =>
|
||||
if data.lua_keywords[node[2]]
|
||||
@value {"chain", "self", {"index", {
|
||||
"string", '"', node[2]
|
||||
"string", '"', @name node[2]
|
||||
}}}
|
||||
else
|
||||
"self."..@name node[2]
|
||||
@ -193,7 +193,7 @@ string_chars = {
|
||||
self_class: (node) =>
|
||||
if data.lua_keywords[node[2]]
|
||||
@value {"chain", "self", {"dot", "__class"}, {"index", {
|
||||
"string", '"', node[2]
|
||||
"string", '"', @name node[2]
|
||||
}}}
|
||||
else
|
||||
"self.__class."..@name node[2]
|
||||
|
Loading…
Reference in New Issue
Block a user