pystencils.backend.ast.structural.PsPragma# class pystencils.backend.ast.structural.PsPragma(text)# A C/C++ preprocessor pragma. Example usage: PsPragma("omp parallel for") translates to #pragma omp parallel for. Parameters: text (str) – The pragma’s text, without the #pragma. _clone_structural()# Implementation of structural node cloning. Return type: PsPragma structurally_equal(other)# Check two ASTs for structural equality. By default this method checks the node’s type and children. If an AST node has additional internal state, it MUST override this method. Return type: bool Parameters: other (PsAstNode)