You are here

abstract public function BackendBase::processReturnValue in SCSS Compiler 1.0.x

Process a bridge function return value before it's passed to the compiler.

This method is responsible for the dynamic type juggling between the two languages to improve the developer experience when writing functions.

Parameters

mixed $value: The input value to process.

Return value

mixed The processed input value.

1 call to BackendBase::processReturnValue()
BackendBase::getCallbackFunction in src/BackendBase.php
Fetch the callback function to use for the supplied descriptor.

File

src/BackendBase.php, line 178

Class

BackendBase
Provides a base compiler backend implementation.

Namespace

Drupal\compiler_scss

Code

public abstract function processReturnValue($value);