mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-03 17:38:23 +00:00
refactor(Player)!: Use AST-based JS extraction with side-effect safe code emission (#1052)
* chore(deps): Add `meriyah` * feat(utils): Implement AST-based JS extractors * chore(utils): Remove old ast walker code * fix(Player): Migrate js extraction logic * chore(JsExtractor): Fix typo in tsdoc * perf(JsAnalyzer): Simplify main AST analysis logic * fix(JsAnalyzer): Change `break` to `return` in AST matching logic * chore: Update docs * chore: Don't export `PlayerInitializationOptions` * chore(evaluate): Update error message to include doc link * perf: Use a `for-loop` to find iife
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
|
||||
#### Defined in
|
||||
|
||||
[src/parser/youtube/SmoothedQueue.ts:55](https://github.com/LuanRT/YouTube.js/blob/4ae0cc5c523a2080e68d6c0c1437c78fe318ea30/src/parser/youtube/SmoothedQueue.ts#L55)
|
||||
[src/parser/youtube/SmoothedQueue.ts:55](https://github.com/LuanRT/YouTube.js/blob/af92984523f90200a18314b94478a2697c9deab0/src/parser/youtube/SmoothedQueue.ts#L55)
|
||||
|
||||
## Accessors
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
#### Defined in
|
||||
|
||||
[src/parser/youtube/SmoothedQueue.ts:141](https://github.com/LuanRT/YouTube.js/blob/4ae0cc5c523a2080e68d6c0c1437c78fe318ea30/src/parser/youtube/SmoothedQueue.ts#L141)
|
||||
[src/parser/youtube/SmoothedQueue.ts:141](https://github.com/LuanRT/YouTube.js/blob/af92984523f90200a18314b94478a2697c9deab0/src/parser/youtube/SmoothedQueue.ts#L141)
|
||||
|
||||
***
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
|
||||
#### Defined in
|
||||
|
||||
[src/parser/youtube/SmoothedQueue.ts:137](https://github.com/LuanRT/YouTube.js/blob/4ae0cc5c523a2080e68d6c0c1437c78fe318ea30/src/parser/youtube/SmoothedQueue.ts#L137)
|
||||
[src/parser/youtube/SmoothedQueue.ts:137](https://github.com/LuanRT/YouTube.js/blob/af92984523f90200a18314b94478a2697c9deab0/src/parser/youtube/SmoothedQueue.ts#L137)
|
||||
|
||||
***
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
|
||||
#### Defined in
|
||||
|
||||
[src/parser/youtube/SmoothedQueue.ts:145](https://github.com/LuanRT/YouTube.js/blob/4ae0cc5c523a2080e68d6c0c1437c78fe318ea30/src/parser/youtube/SmoothedQueue.ts#L145)
|
||||
[src/parser/youtube/SmoothedQueue.ts:145](https://github.com/LuanRT/YouTube.js/blob/af92984523f90200a18314b94478a2697c9deab0/src/parser/youtube/SmoothedQueue.ts#L145)
|
||||
|
||||
***
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
|
||||
#### Defined in
|
||||
|
||||
[src/parser/youtube/SmoothedQueue.ts:149](https://github.com/LuanRT/YouTube.js/blob/4ae0cc5c523a2080e68d6c0c1437c78fe318ea30/src/parser/youtube/SmoothedQueue.ts#L149)
|
||||
[src/parser/youtube/SmoothedQueue.ts:149](https://github.com/LuanRT/YouTube.js/blob/af92984523f90200a18314b94478a2697c9deab0/src/parser/youtube/SmoothedQueue.ts#L149)
|
||||
|
||||
***
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
|
||||
#### Defined in
|
||||
|
||||
[src/parser/youtube/SmoothedQueue.ts:153](https://github.com/LuanRT/YouTube.js/blob/4ae0cc5c523a2080e68d6c0c1437c78fe318ea30/src/parser/youtube/SmoothedQueue.ts#L153)
|
||||
[src/parser/youtube/SmoothedQueue.ts:153](https://github.com/LuanRT/YouTube.js/blob/af92984523f90200a18314b94478a2697c9deab0/src/parser/youtube/SmoothedQueue.ts#L153)
|
||||
|
||||
***
|
||||
|
||||
@@ -104,7 +104,7 @@
|
||||
|
||||
#### Defined in
|
||||
|
||||
[src/parser/youtube/SmoothedQueue.ts:157](https://github.com/LuanRT/YouTube.js/blob/4ae0cc5c523a2080e68d6c0c1437c78fe318ea30/src/parser/youtube/SmoothedQueue.ts#L157)
|
||||
[src/parser/youtube/SmoothedQueue.ts:157](https://github.com/LuanRT/YouTube.js/blob/af92984523f90200a18314b94478a2697c9deab0/src/parser/youtube/SmoothedQueue.ts#L157)
|
||||
|
||||
## Methods
|
||||
|
||||
@@ -118,7 +118,7 @@
|
||||
|
||||
#### Defined in
|
||||
|
||||
[src/parser/youtube/SmoothedQueue.ts:125](https://github.com/LuanRT/YouTube.js/blob/4ae0cc5c523a2080e68d6c0c1437c78fe318ea30/src/parser/youtube/SmoothedQueue.ts#L125)
|
||||
[src/parser/youtube/SmoothedQueue.ts:125](https://github.com/LuanRT/YouTube.js/blob/af92984523f90200a18314b94478a2697c9deab0/src/parser/youtube/SmoothedQueue.ts#L125)
|
||||
|
||||
***
|
||||
|
||||
@@ -132,7 +132,7 @@
|
||||
|
||||
#### Defined in
|
||||
|
||||
[src/parser/youtube/SmoothedQueue.ts:92](https://github.com/LuanRT/YouTube.js/blob/4ae0cc5c523a2080e68d6c0c1437c78fe318ea30/src/parser/youtube/SmoothedQueue.ts#L92)
|
||||
[src/parser/youtube/SmoothedQueue.ts:92](https://github.com/LuanRT/YouTube.js/blob/af92984523f90200a18314b94478a2697c9deab0/src/parser/youtube/SmoothedQueue.ts#L92)
|
||||
|
||||
***
|
||||
|
||||
@@ -150,4 +150,4 @@
|
||||
|
||||
#### Defined in
|
||||
|
||||
[src/parser/youtube/SmoothedQueue.ts:64](https://github.com/LuanRT/YouTube.js/blob/4ae0cc5c523a2080e68d6c0c1437c78fe318ea30/src/parser/youtube/SmoothedQueue.ts#L64)
|
||||
[src/parser/youtube/SmoothedQueue.ts:64](https://github.com/LuanRT/YouTube.js/blob/af92984523f90200a18314b94478a2697c9deab0/src/parser/youtube/SmoothedQueue.ts#L64)
|
||||
|
||||
Reference in New Issue
Block a user