cdecl plus
1.0.0
CDECL+는 JavaScript로 작성된 온라인 유틸리티이며 C 선언을 산문으로 바꿉니다. 주로 C 용으로 설계되었지만 함수 예선 및 참조와 같은 일부 C ++ 기능을 지원합니다.
void f ( int )
// Declare f as function(int) returning void int ( * )[ 3 ]
// pointer to array[3] of int const x ( int [ * ]) &
// Declare x as &-qualified function(VLA of unspecified size of int) returning const int typedef struct y {} x
// Declare x as type alias for struct y void ( T :: * )() const
// pointer to member of T, with type const-qualified function returning void CDECL+는 PEG.JS 문법을 사용하여 JS 파서를 생성 한 다음 산문으로 변환하는 다른 JavaScript 코드에 의해 호출됩니다. 구문 적으로 유효하지만 잘못된 코드에 대한 오류와 같은 추가 진단이 제공됩니다.
PEG.JS 외에는 종속성이 없습니다. HTML 및 CSS는이 프로젝트에 직접 작성되었습니다.