This iterates on the changes from [61438] by removing the need to: - Check out the WordPress/gutenberg repository at the pinned hash. - Run `npm install` within that checkout. - Run `npm build` within that checkout. Instead, the build script will now download a prebuilt zip file published to the GitHub Container Registry by a GitHub Actions workflow recently merged to the Gutenberg Repository (related PR: https://github.com/WordPress/gutenberg/pull/75844). This also removes redundant code responsible for: - Copying files from the `gutenberg` directory to the appropriate locations during the build script in favor of using `grunt copy`. - Modifying built files to replace specific text, such as `sourceMappingURL`, in favor of `grunt replace`. The remaining files within the `tools/gutenberg` directory have been renamed to remove `gutenberg` from the file names. Since these are already nested in a `gutenberg` directory, that was redundant. Since the intention of the pinned value for the repository in the `package.json` file is to specify a full-length commit hash, `ref` has been renamed to `sha`. In Git `ref` encompasses branches, tags, and commit hashes, so this hopefully makes it more clear that something like `branch-name` should not be used. Follow up to [61438], [61439], [61458], [61492], [61677], [61867]. Props desrosj, dmsnell, westonruter, mcsf, jorbin. See #64393. Built from https://develop.svn.wordpress.org/trunk@61873 git-svn-id: http://core.svn.wordpress.org/trunk@61159 1a063a9b-81f0-0310-95a4-ce76da25c4cd
80 lines
1.9 KiB
PHP
80 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Block Serialization Parser
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
/**
|
|
* Class WP_Block_Parser_Frame
|
|
*
|
|
* Holds partial blocks in memory while parsing
|
|
*
|
|
* @internal
|
|
* @since 5.0.0
|
|
*/
|
|
class WP_Block_Parser_Frame {
|
|
/**
|
|
* Full or partial block
|
|
*
|
|
* @since 5.0.0
|
|
* @var WP_Block_Parser_Block
|
|
*/
|
|
public $block;
|
|
|
|
/**
|
|
* Byte offset into document for start of parse token
|
|
*
|
|
* @since 5.0.0
|
|
* @var int
|
|
*/
|
|
public $token_start;
|
|
|
|
/**
|
|
* Byte length of entire parse token string
|
|
*
|
|
* @since 5.0.0
|
|
* @var int
|
|
*/
|
|
public $token_length;
|
|
|
|
/**
|
|
* Byte offset into document for after parse token ends
|
|
* (used during reconstruction of stack into parse production)
|
|
*
|
|
* @since 5.0.0
|
|
* @var int
|
|
*/
|
|
public $prev_offset;
|
|
|
|
/**
|
|
* Byte offset into document where leading HTML before token starts
|
|
*
|
|
* @since 5.0.0
|
|
* @var int
|
|
*/
|
|
public $leading_html_start;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* Will populate object properties from the provided arguments.
|
|
*
|
|
* @since 5.0.0
|
|
*
|
|
* @param WP_Block_Parser_Block $block Full or partial block.
|
|
* @param int $token_start Byte offset into document for start of parse token.
|
|
* @param int $token_length Byte length of entire parse token string.
|
|
* @param int|null $prev_offset Optional. Byte offset into document for after parse token ends. Default null.
|
|
* @param int|null $leading_html_start Optional. Byte offset into document where leading HTML before token starts.
|
|
* Default null.
|
|
*/
|
|
public function __construct( $block, $token_start, $token_length, $prev_offset = null, $leading_html_start = null ) {
|
|
$this->block = $block;
|
|
$this->token_start = $token_start;
|
|
$this->token_length = $token_length;
|
|
$this->prev_offset = $prev_offset ?? $token_start + $token_length;
|
|
$this->leading_html_start = $leading_html_start;
|
|
}
|
|
}
|