API-CHANGES.txt 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. 0.12.2:
  2. + String
  3. + >>uriEncoded
  4. + >>uriDecoded
  5. + >>uriComponentEncoded
  6. + >>uriComponentDecoded
  7. + Collection
  8. + >>removeAll
  9. + >>anyOne
  10. + >>noneSatisfy:
  11. + >>anySatisfy:
  12. + >>allSatisfy:
  13. 0.12.0:
  14. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  15. * Existing classes moved to new KernelInfrastructure package
  16. * ImporterExporter
  17. * are now StreamExporters
  18. * aware of AMD namespaces
  19. * support transport types and commit channels
  20. + Node
  21. + >>nextChild
  22. + >>method
  23. + >>postCopy
  24. + >>isCascadeNode
  25. + >>isLastChild
  26. + BlockNode
  27. + >>nextNode:
  28. + >>nextChild
  29. + SendNode
  30. + >>isCascadeSendNode
  31. + >>shouldBeAliased
  32. + CompiledMethod>>sendTo:arguments:
  33. + Array
  34. + >>addFirst:
  35. + >>removeLast
  36. + Number
  37. + >>ceiling
  38. + >>floor
  39. + >>asNumber
  40. + >>//
  41. + >>cos
  42. + >>sin
  43. + >>tan
  44. + >>arcCos
  45. + >>arcSin
  46. + >>arcTan
  47. + >>log
  48. + >>log:
  49. + >>raisedTo:
  50. + >>sign
  51. + >>**
  52. + >>ln
  53. + >>e
  54. + String
  55. + class>>esc
  56. + >>asMutator
  57. + >>capitalized
  58. + >>isCapitalized
  59. + JSProxy>>printString
  60. + Behavior
  61. + >>ownProtocols
  62. + >>ownMethods
  63. + JSStream>>nextPutSendIndexFor:
  64. + InterfacingObject class
  65. + Interpreter class
  66. + DocumentFragmentTag class
  67. + AbstractExporter class
  68. + PlatformInterface class
  69. - Node>>extent
  70. - JSStream>>nextPutStatement:with:
  71. - Smalltalk.installSuperclass()
  72. - ClassReferenceNode class (now handled via VariableNode)
  73. 0.11.0:
  74. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  75. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  76. * Object>>printString
  77. * replace >>printString with >>printOn:
  78. * replace >>storeString with >>printString
  79. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  80. * Package>>fetch: is now Package>>load:
  81. * Package>>fetch:prefix: is now Package>>load:prefix:
  82. * Queue>>front replaced by Queue>>next
  83. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  84. * Queue>>back: replaced by Queue>>nextPut:
  85. * smalltalk.addMethod() does not use explicit JS selector
  86. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  87. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  88. * String>>asJavaScriptSelector moved to Kernel-Objects package
  89. + Object>>asString
  90. + Object>>putOn:
  91. + String>>isVowel
  92. + Collection>>putOn:
  93. + CharacterArray>>putOn:
  94. + Stream>><<
  95. + Stream>>write
  96. + SequenceableCollection>>newStream
  97. + SequenceableCollection>>readStream
  98. + SequenceableCollection>>stream
  99. + SequenceableCollection>>streamClass
  100. + SequenceableCollection>>writeStream
  101. + Collection>>isImmutable
  102. + Stream>>nextPutString:
  103. + StringStream>>nextPutString:
  104. + JSStream>>nextPutClassRefFunction:
  105. + String>>crlfSanitized
  106. + inlined Block now also responds to >>value:
  107. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  108. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  109. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  110. + Parser: Symbols for binarie selectores
  111. + Package>>commit
  112. + AIContext>>initializeLocals
  113. + ASTInterpreter>>withBlockContext:
  114. + smalltalk.allSelectors()
  115. + Object>>isCompiledMethod
  116. + Object>>isPackage
  117. + Object>>isBehavior
  118. + ClassMoved Announcemen class
  119. + Behavior>>includesBehavior:
  120. + Environment>>classes
  121. + Environment>>allSelectors
  122. + Environment>>removeProtocol:
  123. + Environment>>renameProtocol:to:in:
  124. + CompiledMethod>>protocol:
  125. + Smalltalk>>globalJsVariables
  126. + Smalltalk>>addGlobalJsVariable:
  127. + Smalltalk>>deleteGlobalJsVariable:
  128. - Object>>storeOn:
  129. - Object>>log:block:
  130. - Object>>printNl
  131. - Compiler-IR.st >>javascriptSelector
  132. - Compiler-IR.st >>nextPutVar:
  133. - Kernel-Collections.st >>asSuperSelector
  134. - Collection>>readStream
  135. - Collection>>stream
  136. - Collection>>streamClass
  137. - Collection>>writeStream
  138. - Symbol class (replaced with String)
  139. - IRInlinedNonLocalReturn class
  140. - IRInlinedSend>>nonLocalReturnInliner
  141. - IRNonLocalReturnInliner class
  142. - Package>>dependencies
  143. - Package>>dependencies:
  144. - Package>>properties
  145. - Package>>jsProperties
  146. - Package>>jsProperties:
  147. - Package>>propertiesAsJSON
  148. - Package>>propertyAt:
  149. - Package>>propertyAt:ifAbsent:
  150. - Package>>propertyAt:put:
  151. - Browser>>ajaxPutAt:data: