You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							29 lines
						
					
					
						
							729 B
						
					
					
				
			
		
		
	
	
							29 lines
						
					
					
						
							729 B
						
					
					
				"use strict"; | 
						|
 | 
						|
Object.defineProperty(exports, "__esModule", { | 
						|
  value: true | 
						|
}); | 
						|
exports.isTransparentExprWrapper = isTransparentExprWrapper; | 
						|
exports.skipTransparentExprWrappers = skipTransparentExprWrappers; | 
						|
 | 
						|
var _t = require("@babel/types"); | 
						|
 | 
						|
const { | 
						|
  isParenthesizedExpression, | 
						|
  isTSAsExpression, | 
						|
  isTSNonNullExpression, | 
						|
  isTSTypeAssertion, | 
						|
  isTypeCastExpression | 
						|
} = _t; | 
						|
 | 
						|
function isTransparentExprWrapper(node) { | 
						|
  return isTSAsExpression(node) || isTSTypeAssertion(node) || isTSNonNullExpression(node) || isTypeCastExpression(node) || isParenthesizedExpression(node); | 
						|
} | 
						|
 | 
						|
function skipTransparentExprWrappers(path) { | 
						|
  while (isTransparentExprWrapper(path.node)) { | 
						|
    path = path.get("expression"); | 
						|
  } | 
						|
 | 
						|
  return path; | 
						|
} |