-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Project import generated by Copybara. (#18)
GitOrigin-RevId: 8fdd334f5d601e719c09ac4240202a5326c0d9cb Co-authored-by: Copybara Bot <[email protected]>
- Loading branch information
Showing
7 changed files
with
68 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Name: fib | ||
Parameters: (n) | ||
Definition (definition.function): | ||
function fib(n) { | ||
if (n <= 1) { | ||
return n; | ||
} | ||
return fib(n - 1) + fib(n - 2); | ||
} | ||
|
||
Name: fib | ||
Reference (reference.call): | ||
fib(n - 1) | ||
|
||
Name: fib | ||
Reference (reference.call): | ||
fib(n - 2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
(script_element | ||
(start_tag) @_ | ||
(raw_text) @injection.content | ||
(#not-match? @_ " src=") | ||
(#match? @_ " type=\"text/javascript\"") | ||
(#set! injection.language javascript) | ||
) | ||
|
||
(script_element | ||
(start_tag) @_ | ||
(raw_text) @injection.content | ||
(#not-match? @_ " src=") | ||
(#not-match? @_ " type=") | ||
(#set! injection.language javascript) | ||
) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Test</title> | ||
|
||
<script type="text/javascript"> | ||
function fib(n) { | ||
if (n <= 1) { | ||
return n; | ||
} | ||
return fib(n - 1) + fib(n - 2); | ||
} | ||
</script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |