mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
implement Math.pow
this patch pass math-cordic.js math-partial-sums.js math-spectral-norm.js Signed-off-by: seonghyun kim <sh8281.kim@samsung.com>
This commit is contained in:
parent
8acbfcfe52
commit
fc16b3a774
3 changed files with 83 additions and 4 deletions
|
|
@ -47,9 +47,6 @@ CodeBlock* ScriptParser::generateCodeBlockTreeFromASTWalker(Context* ctx, String
|
|||
if (!codeBlock->hasName(uname)) {
|
||||
CodeBlock* c = codeBlock->parentCodeBlock();
|
||||
while (c) {
|
||||
if (uname.string()->equals("green")) {
|
||||
puts("sadf");
|
||||
}
|
||||
if (c->tryCaptureIdentifiersFromChildCodeBlock(uname))
|
||||
break;
|
||||
c = c->parentCodeBlock();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue