use of com.intellij.openapi.components.ExpandMacroToPathMap in project intellij-plugins by JetBrains.
the class ConversionHelper method expandPaths.
public static void expandPaths(Element element) {
ExpandMacroToPathMap map = new ExpandMacroToPathMap();
PathMacrosImpl.getInstanceEx().addMacroExpands(map);
map.substitute(element, SystemInfo.isFileSystemCaseSensitive, true);
}
Aggregations