Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 41e92af

Browse files
committed
Fix identation problems
1 parent 8e5e3b0 commit 41e92af

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/createRuby.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ export default async function createRuby() {
4747

4848
return vm.eval(rubySource).toString();
4949
},
50-
// A function to print the current YARV execution
51-
seaOfNodes(source) {
50+
// A function to print the current YARV execution
51+
seaOfNodes(source) {
5252
const jsonSource = JSON.stringify(JSON.stringify(source));
5353
const rubySource = `
54-
iseq = RubyVM::InstructionSequence.compile(JSON.parse(${jsonSource}))
55-
iseq = SyntaxTree::YARV::InstructionSequence.from(iseq.to_a)
56-
iseq.to_son.to_mermaid
57-
`;
54+
iseq = RubyVM::InstructionSequence.compile(JSON.parse(${jsonSource}))
55+
iseq = SyntaxTree::YARV::InstructionSequence.from(iseq.to_a)
56+
iseq.to_son.to_mermaid
57+
`;
5858

5959
return vm.eval(rubySource).toString();
60-
}
60+
}
6161
};
6262
};

0 commit comments

Comments
 (0)