mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-21 21:59:12 +01:00
${var} deprecated
line 3180 - 3187
This commit is contained in:
parent
27fb85d971
commit
44c7658d9b
1 changed files with 3 additions and 3 deletions
|
@ -3177,14 +3177,14 @@ class Compiler
|
|||
// 1. op[op name][left type][right type]
|
||||
// 2. op[left type][right type] (passing the op as first arg
|
||||
// 3. op[op name]
|
||||
$fn = "op${ucOpName}${ucLType}${ucRType}";
|
||||
$fn = "op{$ucOpName}{$ucLType}{$ucRType}";
|
||||
|
||||
if (
|
||||
\is_callable([$this, $fn]) ||
|
||||
(($fn = "op${ucLType}${ucRType}") &&
|
||||
(($fn = "op{$ucLType}{$ucRType}") &&
|
||||
\is_callable([$this, $fn]) &&
|
||||
$passOp = true) ||
|
||||
(($fn = "op${ucOpName}") &&
|
||||
(($fn = "op{$ucOpName}") &&
|
||||
\is_callable([$this, $fn]) &&
|
||||
$genOp = true)
|
||||
) {
|
||||
|
|
Loading…
Reference in a new issue