2015-02-20 04:10:52 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Note: This is a fork of the fb-specific transform.js
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var jstransform = require('jstransform').transform;
|
|
|
|
|
|
|
|
var reactVisitors =
|
|
|
|
require('react-tools/vendor/fbtransform/visitors').getAllVisitors();
|
|
|
|
var staticTypeSyntax =
|
|
|
|
require('jstransform/visitors/type-syntax').visitorList;
|
|
|
|
// Note that reactVisitors now handles ES6 classes, rest parameters, arrow
|
|
|
|
// functions, template strings, and object short notation.
|
|
|
|
var visitorList = reactVisitors;
|
|
|
|
|
|
|
|
|
2015-03-01 01:13:18 +00:00
|
|
|
function transform(srcTxt, filename) {
|
2015-02-20 02:04:10 +00:00
|
|
|
var options = {
|
|
|
|
es3: true,
|
2015-03-01 01:13:18 +00:00
|
|
|
sourceType: 'nonStrictModule',
|
|
|
|
filename: filename,
|
2015-02-20 02:04:10 +00:00
|
|
|
};
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
// These tranforms mostly just erase type annotations and static typing
|
|
|
|
// related statements, but they were conflicting with other tranforms.
|
|
|
|
// Running them first solves that problem
|
|
|
|
var staticTypeSyntaxResult = jstransform(
|
|
|
|
staticTypeSyntax,
|
2015-02-20 02:04:10 +00:00
|
|
|
srcTxt,
|
|
|
|
options
|
2015-02-20 04:10:52 +00:00
|
|
|
);
|
|
|
|
|
2015-02-20 02:04:10 +00:00
|
|
|
return jstransform(
|
|
|
|
visitorList,
|
|
|
|
staticTypeSyntaxResult.code,
|
|
|
|
options
|
|
|
|
);
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = function(data, callback) {
|
|
|
|
var result;
|
|
|
|
try {
|
|
|
|
result = transform(
|
2015-03-01 01:13:18 +00:00
|
|
|
data.sourceCode,
|
|
|
|
data.filename
|
2015-02-20 04:10:52 +00:00
|
|
|
);
|
|
|
|
} catch (e) {
|
|
|
|
return callback(null, {
|
|
|
|
error: {
|
|
|
|
lineNumber: e.lineNumber,
|
|
|
|
column: e.column,
|
|
|
|
message: e.message,
|
|
|
|
stack: e.stack,
|
|
|
|
description: e.description
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
callback(null, result);
|
|
|
|
};
|
|
|
|
|
|
|
|
// export for use in jest
|
|
|
|
module.exports.transform = transform;
|