macro.MacroStringTools

MacroStringTools

package haxe-macro

Available on all platforms

This class provides some utility methods to work with strings in macro context.

Static methods

static formatString (s:String, pos:Position):Unknown

Available on macro

Formats String s using the usual interpolation rules.

The returned expression is a concatenation of string parts and escaped elements.

static isFormatExpr (e:ExprOf<String>):Bool

Available on macro

Tells if e is a format string, i.e. uses single quotes ' as delimiters.

This only works if e has a position which the compiler can find. While this is true for any expressions appearing in real Haxe code (i.e. some .hx file), it might not work for expressions generated by macros.

This operation depends on the position of e.

static toComplex (path:String):ComplexType

static toDotPath (pack:Array<String>, name:String):String

Converts a path given by package pack and name name to a String separated by dots.

If pack has no elements, the result is name.

If pack is null, the result is unspecified.

Otherwise the elements of pack are joined with a separating dot, with an appended dot separating the result from name.

static toFieldExpr (sl:Array<String>):Expr

Converts an array of Strings sl to a field expression.

If sl has no elements, the result is null.

If sl has one element, the result is EConst(CIdent(sl[0]).

Otherwise the result is a chain of EField nodes.

If sl is null, the result is unspecified.

© 2005–2016 Haxe Foundation
Licensed under a MIT license.
http://api.haxe.org/haxe/macro/MacroStringTools.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部