import { Constant } from '../../../core/base/Constant'; import { ValueUtil } from '../../../core/common/ValueUtil'; import { Type } from '../../../core/base/Type'; export declare class CxxValueUtil extends ValueUtil { /** Normalize the string constant. * Remove the prefix of the char-type variable and eliminate redundant double quotes */ static normalizeString(str: string): string; /** Create C++ string constants */ static createStringConst(str: string): Constant; /** Create C++ char constants */ static createCharConst(str: string): Constant; /** Create C++ char constants */ static createCompileConst(str: string, compileType: Type): Constant; } //# sourceMappingURL=ValueUtil.d.ts.map