diff options
| author | nsfisis <nsfisis@gmail.com> | 2023-02-23 00:02:51 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2023-02-23 21:13:41 +0900 |
| commit | 80e9caa465375cb584f526675b1e1fe2af73088e (patch) | |
| tree | bd2d984f2098a1c4cfd62dfc8aebcc20fa2f846f /slide.saty | |
| parent | b0ad59f3c3abf2fe25d7163c6d29711ab652deb0 (diff) | |
| download | PHPerKaigi2023-slide-80e9caa465375cb584f526675b1e1fe2af73088e.tar.gz PHPerKaigi2023-slide-80e9caa465375cb584f526675b1e1fe2af73088e.tar.zst PHPerKaigi2023-slide-80e9caa465375cb584f526675b1e1fe2af73088e.zip | |
発表原稿を追加
Diffstat (limited to 'slide.saty')
| -rw-r--r-- | slide.saty | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -246,13 +246,13 @@ lhs->type_info = IS_REFERENCE; `# -let zval-new-ref-def = `ZVAL_NEW_REF(z) +let zval-new-ref-def = `ZVAL_NEW_REF(rhs) zend_reference *ref = new zend_reference(); ref->refcount = 1; - /* z の中に入っている値を ref にコピー */ - ZVAL_COPY_VALUE(&ref->val, z); - z->value = ref; - z->type_info = IS_REFERENCE; + /* rhs の中に入っている値を ref にコピー */ + ZVAL_COPY_VALUE(&ref->val, rhs); + rhs->value = ref; + rhs->type_info = IS_REFERENCE; `# @@ -379,6 +379,9 @@ document '< +listing{ * PHP v8.2.3 (\link?:({GitHub})(`https://github.com/php/php-src/tree/php-8.2.3`);) * ソースコードは発表向けに改変しています + ** 本スライドに掲載したコード片には、以下のライセンスが適用されます。 + + ** https://github.com/php/php-src/blob/php-8.2.3/LICENSE * C言語としては不正確な説明を話したり載せたりすることがあります } > @@ -531,7 +534,7 @@ $y =& $x;`); \php-src-link(`Zend/zend_types.h`)(1077)(1086); } +p{ - \inline-code(`z`);の中身を参照でラップする + \inline-code(`rhs`);の中身を参照でラップする } > |
