1;; (eq? $scope-name (string-append "ab" $name "cy")) 2p input.c /^ int p;$/;" kind:member file: scope:struct:abpcy typeref:typename:int 3;; (eq? $scope-name (concat "ab" "p" "cy")) 4p input.c /^ int p;$/;" kind:member file: scope:struct:abpcy typeref:typename:int 5;; (eq? $scope-name (concat (concat "a" "b") $name (concat "c" "y"))) 6p input.c /^ int p;$/;" kind:member file: scope:struct:abpcy typeref:typename:int 7;; (eq? $scope-name (concat (concat "a" "b" $name) (concat "c" "y"))) 8p input.c /^ int p;$/;" kind:member file: scope:struct:abpcy typeref:typename:int 9;; (eq? $scope-name (concat (concat (concat "a" "b" $name) (concat "c" "y")))) 10p input.c /^ int p;$/;" kind:member file: scope:struct:abpcy typeref:typename:int 11;; ((string->regexp (concat (concat (concat "a" "b" $name) (concat "c" "y")))) (or $scope-name "")) 12p input.c /^ int p;$/;" kind:member file: scope:struct:abpcy typeref:typename:int 13;; ((string->regexp (concat (concat (concat "a" "b" "p") (concat "c" "y")))) (or $scope-name "")) 14p input.c /^ int p;$/;" kind:member file: scope:struct:abpcy typeref:typename:int 15;; ((printX (string->regexp (concat (concat (concat "a" "b" "p") (concat "c" "y"))))) (or $scope-name "")) 16p input.c /^ int p;$/;" kind:member file: scope:struct:abpcy typeref:typename:int 17